Skip to content

Instantly share code, notes, and snippets.

@Minozzzi
Last active May 6, 2022 13:04
Show Gist options
  • Save Minozzzi/dfe978754f42686e23a4534e8adfb6a5 to your computer and use it in GitHub Desktop.
Save Minozzzi/dfe978754f42686e23a4534e8adfb6a5 to your computer and use it in GitHub Desktop.
This gist is useful to look up a word in a given string
const searchWord = (text: string, wordToSearchInText: string): boolean => text.includes(wordToSearchInText)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment