dropRightWhile
Removes elements from the end of an array until the passed function returns true.
Returns the remaining elements in the array.
- Loop through the array, using Array.prototype.slice()to drop the last element of the array until the value returned fromfuncistrue.
- Return the remaining elements.