I Want To Print 1 to 100 Numbers Using Arrays In Javascript Only

0 votes
<!DOCTYPE html>
<html>
<head>
    <title>100-Numbers</title>
</head>
<body>
    <script>
        var points = new Array(100);
        var label = points.length;
        for (var i = 0; i < label; i++) {
            console.log(points[i]);
        }
    </script>
</body>
</html>

My first question on Stackoverflow is this one. Please bear with me as I am a newbie and could use a lot of your help. I'm attempting to print 1 to 100 numbers in Javascript using arrays. I'm running into some issues with the code above. Please correct my errors so that you can see the result. I apologise in advance.

Nov 16, 2022 in Java-Script by Ashwini
• 5,430 points
1,714 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
0 votes

This will print 1-100 without any loops

 Array.from({length: 100},(_,x) => console.log(x+1))
answered Nov 17, 2022 by Tejashwini
• 3,820 points

edited Mar 5
0 votes
let a=Array(100)

for(b=0;b<=a.length ;b++){
 console.log(b)
}

you should proceed in this way to print the result.

As i also checked that while trying to index the value inside the console.log undefined is being printed.

So  i will try to find out the exact cause of it and if someone knows the exact reason then do let me know.
answered Nov 22, 2022 by HA1

edited Mar 5
0 votes

The main issue is this line

var points = new Array(100);

This generates an array with length 100, there are no elements in that array yet. You would want to add these 1-100 numbered elements to the array first such as below. Notice the points.length method has been replaced by the amount of numbers we want to add as the for loop will add each number to the array and print it out each loop over. Instead of declaring Array(100) it is just Array() to make a new empty array. We do not have to declare a size to start with, this differs from languages such as C++ where you need a vector to achieve this result.

Note: .push(x) adds x to the back of the array

var points = new Array(); 

for (var i = 0; i < 100; i++)  { 

     points.push(i+1) 

     console.log(points[i]);

 }
=> 1, 2, 3, 4, 5, 6, 7, ...

answered Nov 23, 2022 by console.

edited Mar 5

Related Questions In Java-Script

0 votes
1 answer

How to open a URL in a new Tab using JavaScript or jQuery?

Hello @kartik, Use window.open(): var win = window.open('http://edureka.co/', '_blank'); if (win) ...READ MORE

answered Aug 25, 2020 in Java-Script by Niroj
• 82,840 points
6,597 views
0 votes
1 answer

How do I copy to the clipboard in JavaScript?

Hello @kartik, To copy HTML , you can ...READ MORE

answered Aug 28, 2020 in Java-Script by Niroj
• 82,840 points
1,029 views
0 votes
2 answers

How can I set focus on an element in an HTML form using JavaScript?

Hi Kartik, try the following script <script>  (window.onload = ...READ MORE

answered Sep 24, 2020 in Java-Script by Okugbe
• 280 points
2,004 views
0 votes
1 answer
+1 vote
1 answer

How can we send message multiple time to a specific person or group in whatsapp using loop?

Hii @kartik,  This is simple task to send single ...READ MORE

answered Feb 28, 2020 in Java-Script by Niroj
• 82,840 points
19,548 views
0 votes
1 answer

Presenting docket dtates inside html page by javascript

Use the Docker Engine Api:Docker Engine API ...READ MORE

answered Jun 20, 2018 in Docker by DareDev
• 6,890 points
880 views
0 votes
1 answer

Migrating proxy npm repo in nexus 3

I don't think you can achieve this ...READ MORE

answered Jun 22, 2018 in DevOps Tools by DareDev
• 6,890 points
1,657 views
+1 vote
1 answer

What is the difference between JavaScript and Java

This quote rightly explains that 2 totally ...READ MORE

answered Jun 29, 2018 in Java by Daisy
• 8,140 points
904 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP