Question
In this first line of a JavaScript for loop, what is i called?
for (let i=1; i<=10; i++){
for (let i=1; i<=10; i++){
Answers
GPT 3.5
i is called the loop counter in this for loop.
the loop variable
the iteration variable
the for variable
the incrementing variable
the iteration variable
the for variable
the incrementing variable
GPT 3.5
the loop variable