+ 2
While Loop through Array
I'm totally, totally lost (again) on this one. I've stared at it and gone through previous lessons and scoured internet forums for hours and cant find anything that works. Task: Modify the code to output all elements using a while loop, instead of the for loop. The Code: let cart = ['banana', 'apples', 'milk']; for(let x=0; x<3; x++){ console.log(cart[x]); } I need to change this to a while loop to output the same answer as the for loop. Not a clue. Anyone enlighten me? Many thanks
2 Antworten
+ 5
// try this
let cart = ['banana', 'apples', 'milk'];
let x=0;
while(x<cart.length){
console.log(cart[x]);
x++;
}
+ 4
Some sick and twisted imp tapped this out on my keyboard. Nobody saw me do it.
let cart = ["bananas", "apples", "milk"];
for(
let x = 0;
/*while (*/ x<3 /*) {*/;
console.log(cart[x]),
x++/*;
}*/
);
Hmm, it really works.