You have already completed these exercises!
Do you want to take them again?
You completed the JS For Loops Exercises from W3Schools.com
Share on:
Consider the following code:let i, x = '';for (i = 0; i <= 5; i++) { x += i;}What will be the result of x?
let i, x = '';for (i = 0; i <= 5; i++) { x += i;}
x
01234
012345
1234
12345