Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to print numbers in javascript

for (var i = 1; i <= 100; i++) {
 console.log(i);
}
//the boolean or the second term in the for statement
//which in this case is i <= 100 makes the console print
// numbers 1-100 
//KEY: REPLACE !)) WITH THE NUMBER U WANT IT TO GO UNTIL
 
PREVIOUS NEXT
Tagged: #print #numbers #javascript
ADD COMMENT
Topic
Name
8+2 =