print numbers from 1 to 100 in javascript

print numbers from 1 to 100 in javascript – Learn how to print the numbers from 0 or 1 to 100 without including any numeric value in your JavaScript code. Using JavaScript Unary Operator (+), you can convert any variable into a number.

print numbers from 1 to 100 in javascript

How to print the numbers from 1 to 100 without including numbers in your JavaScript code – Print 1 to 100 Numbers Using Arrays In Javascript Only

for(let qty = 0;qty <= 100;qty++){
    console.log(qty);
}

JavaScript program to print numbers from 1 to 10 using while loop

var userNo = 1;
while (userNo <= 10) {
 console.log(userNo);
 userNo++;
}

Output:

1
2
3
4
5
6
7
8
9
10

From 0 to 100

// This would result: 1
console.log(".".length);
let max = "..........".length;

for(let qty = [].length;qty <= (max * max);qty++){
    console.log(qty);
}

From 1 to 100

let max = "..........".length;

for(let qty = ".".length;qty <= (max * max);qty++){
    console.log(qty);
}

From X to N

// begging = 9 * 3 = 27
let begging = ".........".length * "...".length;
// master_step = 10 * 10 + 5 = 105
let master_step = "..........".length * "..........".length + ".....".length;

for(let qty = begging;qty <= master_step;qty++){
    console.log(qty);
}

Don't Miss : PHP Program To Print Patterns Of Numbers And Stars

how to print numbers in javascript

for (var qty = 1; qty <= 100; qty++) {
 console.log(qty);
}

I hope you get an idea about print numbers from 1 to 100 in javascript.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment