Every
methodsExecutes a callback function for every single item in the array and returns true or false depending if all the items in the array pass the condition. An equivalent of Array.prototype.every.
Parameters:callbackFunction
Returns:Boolean
The function that will be executed for every item.
—Returns true if all items pass the test function condition. Otherwise, returns false.