Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

JavaScript Arrays: Some(), Every(), and forEach()

Kunal Tandon
Level Up Coding
Published in
2 min readApr 27, 2019

The Some() Method

(element) => boolean
let arr = [1, 2, 3, 4, 5, 6, 7, 8];
arr.some((value)=> { return (value%2 == 0); });
true
arr.some((value)=> { return (value < 0); });
false
arr.some((value) => { 
index++;
console.log(index);
return (value % 2 == 0);
});
1 2 true

The Every() Method

let arr = [1, 2, 3, 4, 5, 6, 7, 8];arr.every((value)=> { 
return (value > 0);
});
arr.every((value)=> { return (value == 5); });
false
arr.every((value) => { 
index++;
console.log(index);
return (value != 4);
});
1 2 3 false

The forEach() method

let arr = [1, 2, 3, 4, 5, 6, 7, 8];arr.forEach((value) => { 
console.log(value == 5);
});
false false false false true false false false

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response