Iterieren Sie 0 bis n für Loop JavaScript

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