Skip to content

Instantly share code, notes, and snippets.

@PierraKimathi-zz
Last active January 22, 2019 09:00
Show Gist options
  • Save PierraKimathi-zz/dc3c219fdf6f4c4121dcff3cf83dff07 to your computer and use it in GitHub Desktop.
Save PierraKimathi-zz/dc3c219fdf6f4c4121dcff3cf83dff07 to your computer and use it in GitHub Desktop.
Find the word needle in a list
function find_needle(haystack) {
var needleIndex = haystack.IndexOf('needle');
return 'found the needle at position' + needleIndex;
}
find_needle(['hay', 'junk', 'hay', 'hay', 'moreJunk', 'needle', 'randomJunk'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment