Skip to content

Instantly share code, notes, and snippets.

Created April 6, 2017 23:50
Show Gist options
  • Select an option

  • Save anonymous/700b53085298f3ed0d6be4d51d834bd3 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/700b53085298f3ed0d6be4d51d834bd3 to your computer and use it in GitHub Desktop.
4.1 indexOf created by smillaraaq - https://repl.it/GzJP/1
function indexOf(argArray,argElement){
if(argArray.indexOf(argElement)){
console.log(argArray.indexOf(argElement));
}
}
indexOf([1,2,3],2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment