0
How do i enter to display all three-digit numbers on javascript?
3 ответов
+ 1
var n = 99;
while (++n<1000) {
console.log(n);
}
0
in console and numbers 100 to 999, please
- 1
Need more information on what you are looking for. Display how: console.log or x.innerHTML? Just numbers 100 to 999 or any number such as 000?