Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,988 questions

51,933 answers

573 users

How to stop a for loop in JavaScript

3 Answers

0 votes
const arr = [5, 7, 8, 1, 2, 9, 0, 8];

for (let i = 0; i < arr.length; i++) {
     if (arr[i] === 1) {
        break;     
     }
     console.log(arr[i]);
}




/*
run:

5
7
8

*/

 



answered Feb 8, 2021 by avibootz
0 votes
const arr = [5, 7, 8, 1, 2, 9, 0, 8];

for (let i in arr) {
     if (arr[i] === 2) {
        break;     
     }
     console.log(arr[i]);
}




/*
run:

5
7
8
1

*/

 



answered Feb 8, 2021 by avibootz
0 votes
const arr = [5, 7, 8, 1, 2, 9, 0, 8];

for (let n of arr) {
     if (n === 2) {
        break;     
     }
     console.log(n);
}




/*
run:

5
7
8
1

*/

 



answered Feb 8, 2021 by avibootz

Related questions

1 answer 124 views
124 views asked Jul 6, 2022 by avibootz
1 answer 91 views
1 answer 95 views
...