Using java script pls can i create loops without ysing number pls if so pls tell how | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Using java script pls can i create loops without ysing number pls if so pls tell how

Pls answer

27th Aug 2020, 7:40 AM
Oyedeji hiqmat
3 Answers
+ 4
Do you mean, you want to just iterate over an iterable without using an index variable, like you can do it for example in Python? In Javascript, that may look like this: numbers = [5, 3, 7, 1, 9]; for(x of numbers) console.log(x);
27th Aug 2020, 8:11 AM
HonFu
HonFu - avatar
+ 2
What is the idea about loop without number, can you elaborate on that? as I understand it, loop uses a specific condition to realise when it should stop. So how to know when the loop should stop without using a number?
27th Aug 2020, 7:49 AM
Ipang
27th Aug 2020, 10:55 AM
Nor'wester 🌪️ 🇧🇩 (INACTIVE)
Nor'wester 🌪️ 🇧🇩 (INACTIVE) - avatar