Drops elements from array while predicate is true.
Input array
Function to decide drop
Remaining array
dropWhile([1,2,3,4], n => n<3); // [3,4] Copy
dropWhile([1,2,3,4], n => n<3); // [3,4]
1.2.0
Drops elements from array while predicate is true.