**Description:** Returns the value of the first element in the array that satisfies the provided testing function. Otherwise undefined is returned. **Sample**: ``` find([1, 2, 3, 4, 5], function (d) { return d < 3; }); // => [1, 2] ```