Successfully added
JavaScript
by Patrik
JavaScript Array Object
In JavaScript, an array is a special object that provides a way to store and organize data. It is a linear, ordered collection of elements, and an index can access each element. The array object in JavaScript comes with various built-in methods for manipulating and working with arrays.
...see more
The some() method of Array instances tests whether at least one element in the array passes the test implemented by the provided function. It returns true if, in the array, it finds an element for which the provided function returns true; otherwise, it returns false. It doesn't modify the array.
Reference: Array.prototype.some() - JavaScript | MDN (mozilla.org)
Referenced in:
Comments