Skip to content

Instantly share code, notes, and snippets.

@LarrySul
Created May 9, 2019 19:51
Show Gist options
  • Save LarrySul/b106592f4d6596e203b192678d7b8122 to your computer and use it in GitHub Desktop.
Save LarrySul/b106592f4d6596e203b192678d7b8122 to your computer and use it in GitHub Desktop.
let str = "He collected the apple";
let regex = /apple/;
let result = regex.test(str);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment