Using Lodash findLast to search arrays

Medium
0.0% Acceptance

In this lab, you'll learn how to use _.findLast() method provided by the lodash library. _.findLast() iterates over elements of an array from right to left, returning the first element that satisfies the provided predicate function.

For this lab, first import the lodash library, create an array 'myArray' and find the last even number in the array using _.findLast(). Finally, export the result as default.