Summary
The array method some() can be used to test whether at least one element in the array passes the test implemented by the provided function, returning true if it finds an element for which the provided function returns true, and false otherwise.
1
According to