Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created March 27, 2019 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chuloo/0d1de6464f68984f5d06f6a0a5b1f833 to your computer and use it in GitHub Desktop.
Save Chuloo/0d1de6464f68984f5d06f6a0a5b1f833 to your computer and use it in GitHub Desktop.
Last similar name
// List of names
const names = "sean, becky, liz, wale, blue, becky, john"
const searchItem = "becky"
// Find last occurrence of "becky"
const lastSimilarName = names.lastIndexOf(searchItem)
// Display result
console.log(lastSimilarName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment