Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created December 30, 2018 02:22
Show Gist options
  • Save zeptobook/9fb9feb91fb130ab40718252eb0f8ada to your computer and use it in GitHub Desktop.
Save zeptobook/9fb9feb91fb130ab40718252eb0f8ada to your computer and use it in GitHub Desktop.
array.find()
var nums = [10, 20, 30, 40, 50];
var firstNum = nums.find(function(value){
return value > 30
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment