Как показать цифры в JavaScript, используя петлю

let number = 0;
while(i <= 10){
  console.log(i);
  i++;
}
Alert Angelfish