Как печатать числа от 1 до 100 в JavaScript

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