Skip to content

Instantly share code, notes, and snippets.

@pporche87
Created April 17, 2017 23:31
Show Gist options
  • Save pporche87/f4a724174e58ab1ab21b9906250e065c to your computer and use it in GitHub Desktop.
Save pporche87/f4a724174e58ab1ab21b9906250e065c to your computer and use it in GitHub Desktop.
let indexOf = (array, value) => {
let compareArray = array
for(let i = 0; i < compareArray.length; i++) {
if(value === compareArray[i]) {
return i
}
}
return -1
}
module.exports = indexOf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment