So drucken Sie Nummern von 1 bis 100 in JavaScript

for(let i = 0; i < 100; i++){
  console.log(i);
}
Excited Elephant