Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created March 27, 2019 14:13
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/710066198c067d17045b34b57bc486ea to your computer and use it in GitHub Desktop.
Save Chuloo/710066198c067d17045b34b57bc486ea to your computer and use it in GitHub Desktop.
The last "the"
// New string
const words = "the house, the car, the book, the mac and the cheese"
// Specify search item
const searchTerm = "the"
// Search the string
let lastIndexOfWord = words.lastIndexOf(searchTerm)
// Display last index
console.log(lastIndexOfWord)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment