Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Last active July 21, 2019 08:54
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 luandevpro/2bd70aed8e03b3a85635dfa898d1deaf to your computer and use it in GitHub Desktop.
Save luandevpro/2bd70aed8e03b3a85635dfa898d1deaf to your computer and use it in GitHub Desktop.
let testStr = "freeCodeCamp freeCodeCamp";
let ourRegex = /freeCodeCamp/;
let result = testStr.match(ourRegex);
console.log(result) // ["freeCodeCamp"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment