You have already completed these exercises!
Do you want to take them again?
You completed the JS For Of Loops Exercises from W3Schools.com
Share on:
Consider the following code:const fruits = ['Apple', 'Banana', 'Orange'];for (x of fruits) { console.log(x);}What will be the result in the console?
const fruits = ['Apple', 'Banana', 'Orange'];for (x of fruits) { console.log(x);}
123
012
AppleBananaOrange