Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created January 3, 2021 14:32
Show Gist options
  • Save Jagathishrex/249588e83558d7d2a5c620e80ac48a57 to your computer and use it in GitHub Desktop.
Save Jagathishrex/249588e83558d7d2a5c620e80ac48a57 to your computer and use it in GitHub Desktop.
const lang = ["Java", "JavaScript"];
// element found in 1st index
lang.findIndex( (val) => val === "JavaScript" ); // 1
// element not found so returns -1
lang.findIndex( (val) => val === "Python" ); // -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment