Skip to content

Instantly share code, notes, and snippets.

@srkama
Created March 14, 2016 04:10
Show Gist options
  • Select an option

  • Save srkama/a7570be9b04baaf74b3f to your computer and use it in GitHub Desktop.

Select an option

Save srkama/a7570be9b04baaf74b3f to your computer and use it in GitHub Desktop.
function find(arr, func) {
var num = 0;
for(i=0;i<=arr.length;i++) {
if (func(arr[i])) {
return arr[i];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment