You have already completed these exercises!
Do you want to take them again?
You completed the JS Iterables Exercises from W3Schools.com
Share on:
Consider the following code:let firstname = 'Jim', i = 0;for (const x of firstname) { i++;}What will be the value of i?
let firstname = 'Jim', i = 0;for (const x of firstname) { i++;}
i