Test Underscore

by Alexey Ryazhskikh

JavaScript

var x =  _.find([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; });

console.log(x);