Skip to content

Instantly share code, notes, and snippets.

@intermundos
Created May 21, 2017 09:55
Show Gist options
  • Save intermundos/17645c75367d9865d1d339f7abd66249 to your computer and use it in GitHub Desktop.
Save intermundos/17645c75367d9865d1d339f7abd66249 to your computer and use it in GitHub Desktop.
String search
const func = (s, a, b) => !s ? -1 : Math.max(s.lastIndexOf(a), s.lastIndexOf(b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment