Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Created December 10, 2019 09:50
Show Gist options
  • Save Paul-Browne/7ef8d6f05529e44f704d92a59b5cb18e to your computer and use it in GitHub Desktop.
Save Paul-Browne/7ef8d6f05529e44f704d92a59b5cb18e to your computer and use it in GitHub Desktop.
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var indexOfOne = array.indexOf(1);
var indexOfFive = array.indexOf(5);
var indexOfTwenty = array.indexOf(20);
console.log(indexOfOne); // 0
console.log(indexOfFive); // 4
console.log(indexOfTwenty); // -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment