Iterating arrays with array.some() in JavaScript
When we start thinking of using an array, we think of iterations and other manipulations, and in JavaScript we often use the array.map() function to iterate through the array content. This post is about a special array method called array.some() that can be used to check if any one element… Read More »Iterating arrays with array.some() in JavaScript