0 votes
in ECMAScript by

What is the significance of the following code snippet?

for (let i = 0; i < 10; i++) {

x += 10;

}

(1)"let I" is similar to "var i"

(2)The variable i is valid only inside the for loop

(3)all the options

(4)The variable i is global.

1 Answer

0 votes
by
The variable i is valid only inside the for loop

Related questions

0 votes
asked Jan 21, 2020 in ECMAScript by GeorgeBell
0 votes
asked May 21, 2019 in Mathematics by sheetalkhandelwal
...