itérer 0 à n en utilisant pour Loop JavaScript

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