🌐
MDN Web Docs
developer.mozilla.org β€Ί en-US β€Ί docs β€Ί Web β€Ί JavaScript β€Ί Reference β€Ί Global_Objects β€Ί Array β€Ί some
Array.prototype.some() - JavaScript | MDN
1 week ago - The some() method of Array instances returns true if it finds an element in the array that satisfies the provided testing function. Otherwise, it returns false.
🌐
W3Schools
w3schools.com β€Ί jsreF β€Ί jsref_some.asp
JavaScript Array some() Method
The some() method checks if any array elements pass a test (provided as a callback function).
Discussions

Difference between JavaScript Array every and some - Stack Overflow
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some More on stackoverflow.com
🌐 stackoverflow.com
What is the correct situation to use array.find() vs. array.includes vs. array.some() ?
const value = arr.find(test) β€” return the value that passes your test function for when you need to run a test to determine which value you want const bool = arr.some(test) β€” return true if at least one element passes your test for when you need to see if anything in your array passes your test function const bool = arr.includes(value) β€” check if a value exists in an array for when you already know the value and you want to check if the array has a copy More on reddit.com
🌐 r/learnjavascript
7
25
September 14, 2019
Javascript array.some() function does not work as it should? - Stack Overflow
I'm doing a web project using AngularJS, but in one of the control checks I'm trying to implement the array.prototype.some()-function. Unfortunately, it does not work, and always gives false. In my More on stackoverflow.com
🌐 stackoverflow.com
javascript - Why Array.some() method behaving differently? - Stack Overflow
I am having an array which contains empty elements. let arr = ['item 1', 'item 2', , 'item 3', , 'item 4', 'item 5']; I am trying to find out if there is any empty element in an array by using Array. More on stackoverflow.com
🌐 stackoverflow.com
🌐
MDN Web Docs
developer.mozilla.org β€Ί en-US β€Ί docs β€Ί Web β€Ί JavaScript β€Ί Reference β€Ί Global_Objects β€Ί TypedArray β€Ί some
TypedArray.prototype.some() - JavaScript | MDN
1 week ago - The some() method of TypedArray instances returns true if it finds an element in the array that satisfies the provided testing function. Otherwise, it returns false. This method has the same algorithm as Array.prototype.some().
🌐
MDN Web Docs
developer.mozilla.org β€Ί en-US β€Ί docs β€Ί Web β€Ί JavaScript β€Ί Reference β€Ί Global_Objects β€Ί Array
Array - JavaScript | MDN
1 week ago - Other methods mutate the array that the method was called on, in which case their return value differs depending on the method: sometimes a reference to the same array, sometimes the length of the new array.
🌐
Ultimate Courses
ultimatecourses.com β€Ί blog β€Ί array-some-javascript
Exploring Array Some in JavaScript - Ultimate Courses
March 26, 2020 - No array items are returned back to you, Some is exclusively for returning a Boolean result. If you do want items back, Array Map and Array Filter are better methods to use. If you are serious about your JavaScript skills, your next step is to take a look at my JavaScript courses, they will teach you the full language, the DOM, the advanced stuff and much more!
🌐
Medium
medium.com β€Ί poka-techblog β€Ί simplify-your-javascript-use-some-and-find-f9fb9826ddfd
Simplify your JavaScript – Use .some() and .find() | by Etienne Talbot | poka-techblog | Medium
September 5, 2019 - Well, you pass .some() a function as the argument. That function runs for each value in the array. You can then see if the value fits the condition you’ve written. The function must return a boolean (although a truthy/falsy value works as well). As soon as one true is returned, .some() will itself return true.
🌐
Can I Use
caniuse.com β€Ί mdn-javascript_builtins_array_some
JavaScript built-in: Array: some | Can I use... Support tables for HTML5, CSS3, etc
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
Find elsewhere
🌐
GeeksforGeeks
geeksforgeeks.org β€Ί javascript β€Ί what-is-the-difference-between-every-and-some-methods-in-javascript
What is the difference between every() and some() methods in JavaScript ? - GeeksforGeeks
July 12, 2025 - The Array.some() method in JavaScript is used to check whether at least one of the elements of the array satisfies the given condition or not.
🌐
GeeksforGeeks
geeksforgeeks.org β€Ί javascript β€Ί javascript-array-some-method
JavaScript Array some() Method - GeeksforGeeks
July 12, 2024 - The some() method checks if any array elements pass a test provided as a callback function, returning true if any do and false if none do.
🌐
JavaScript in Plain English
javascript.plainenglish.io β€Ί javascript-array-some-and-every-2975e0cc12f0
JavaScript Array.some() and every() | by Sateesh Gandipadala | JavaScript in Plain English
December 27, 2019 - JavaScript Array.some() and every() Recently I came across two methods of Array prototype I felt like sharing with you all. Array.some() This can be used to test array has at least one element of the …
🌐
4Geeks
4geeks.com β€Ί how-to β€Ί javascript-array-some-method
How to use the Javascript array some method?
July 16, 2025 - Array Some Method or Array some() shown in the examples before, is just a way used in Javascript for programmers like you and me to perform condition checking.
🌐
freeCodeCamp
freecodecamp.org β€Ί news β€Ί learn-the-every-and-some-array-methods-in-javascript
JavaScript Array Methods – How to Use every() and some() in JS
August 10, 2022 - In JavaScript, every and some help you test if something is true for every element or some elements of an array. In this article, I'll show you how to use these helpful array methods. Table of Contents1How every() and some() Work – an Overview2Param...
🌐
ServiceNow Community
servicenow.com β€Ί community β€Ί developer-articles β€Ί fun-with-array-methods β€Ί ta-p β€Ί 2322109
Fun with array methods! - ServiceNow Community
January 16, 2025 - Time for some fun. Get it? The some method tests if there is at least one element in the array that passes a test in your function. some will return true if it finds any element in your array that evaluates as true from your function.
🌐
Marius Schulz
mariusschulz.com β€Ί blog β€Ί the-some-and-every-array-methods-in-javascript
The some() and every() Array Methods in JavaScript β€” Marius Schulz
November 22, 2020 - Array.prototype.some(): documentation and polyfill Β· Array.prototype.every(): documentation and polyfill Β· ES2015 brought a native Promise implementation to the JavaScript standard library.
🌐
JavaScript Tutorial
javascripttutorial.net β€Ί home β€Ί javascript array methods β€Ί array.prototype.some()
JavaScript Array some() Method
November 8, 2024 - Use the JavaScrip Array some() method to test if an array has at least one element that meets a condition.
🌐
Reddit
reddit.com β€Ί r/learnjavascript β€Ί what is the correct situation to use array.find() vs. array.includes vs. array.some() ?
What is the correct situation to use array.find() vs. ...
September 14, 2019 -

I understand how each of these methods work, but they all seem to have similar functions to one another, and I'm not sure as to what situation might call for what method.

🌐
Programiz
programiz.com β€Ί javascript β€Ί library β€Ί array β€Ί some
Javascript Array some() (with Examples)
Returns true if an array element passes the given test function (callback returns a truthy value). Otherwise, it returns false. ... // a test function: returns age that is less that 18 function checkMinor(age) { return age < 18; } const ageArray = [34, 23, 20, 26, 12]; // checks whether ageArray contains any element that is less than 18 let check = ageArray.some(checkMinor); console.log(check);