Created
July 12, 2020 14:05
-
-
Save infinitbility/ba0f69d4d519cac89744a1e805e0f6fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//indexOf example | |
var fruits = ['Banana', 'Blackcurrant', 'Blueberry', 'Chili pepper', 'Cranberry', 'Eggplant', 'Gooseberry']; | |
// You get their index ( Key ) | |
var index = fruits.indexOf('Blueberry'); | |
// output 2 | |
// if value not available | |
var index = fruits.indexOf('Apple'); | |
// output -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment