Skip to content

Instantly share code, notes, and snippets.

@climboid
Created July 5, 2018 22:24
Show Gist options
  • Save climboid/3987d0430d1f53df1fd970340b95edca to your computer and use it in GitHub Desktop.
Save climboid/3987d0430d1f53df1fd970340b95edca to your computer and use it in GitHub Desktop.
for (var i=0; i<arr.length; i++){
if(arr[i] === item){
return i;
}
}
return -1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment