Key Numbers
<!DOCTYPE html> <html> <head> <title>Number Sequence Display</title> </head> <body> <div id="numberContainer"></div> <script> // Get the container element const numberContainer = document.getElementById("numberContainer"); // Loop through the numbers and create the sequence for (let i = 1; i <= 17513; i++) { // Create a new paragraph element const paragraph = document.createElement("p"); // Create the text node with the formatted number const text = document.createTextNode("LCE" + i); // Append the text node to the paragraph element paragraph.appendChild(text); // Append the paragraph to the container numberContainer.appendChild(paragraph); } </script> </body> </html>
top of page
EST 1959

Thousand of products available for same day dispatch
No Reviews YetShare your thoughts.
Be the first to leave a review.
Related Products
bottom of page