Itater от 0 до N Использование для цикла JavaScript

let n = 10
for (let i=0; i<= n; i++){
  console.log(i)
}
Clumsy Capuchin