In this first line of a JavaScript for loop, what is i <= 10 called?

for (let i = 1 i <= 10 i++){
(1 point)
the initialization
the condition
the error flag
the increment

1 answer

The condition.
Similar Questions
  1. What is wrong with this for loop?for (var i = 0, i < 10, i + 1) { move(); } JavaScript I. The for loop uses commas instead of
    1. answers icon 3 answers
  2. What is wrong with this for loop?for (let i = 0, i < 10, i + 1) { move(); } JavaScript I. The for loop uses commas instead of
    1. answers icon 1 answer
    1. answers icon 3 answers
  3. In this first line of a JavaScript for loop, what is i called?for (let i=1; i<=10; i++){ (1 point) the loop variable the
    1. answers icon 1 answer
more similar questions