cara mencetak nomor dari 1 hingga 100 dalam javascript

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