Skip to content

Instantly share code, notes, and snippets.

@csdear
Created March 16, 2016 14:48
Show Gist options
  • Select an option

  • Save csdear/d0ceb3b9c004fb7fc7d9 to your computer and use it in GitHub Desktop.

Select an option

Save csdear/d0ceb3b9c004fb7fc7d9 to your computer and use it in GitHub Desktop.
Simple Array IndexOf
var fruits = ['banana', 'orange', 'apple', 'mango'];
var wheresTheApple = fruits.indexOf("apple");
>wheresTheApple
<2
//This is case sensitive. if not found retuns -1
var wheresTheApple = fruits.indexOf("Apple");
undefined
wheresTheApple
-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment