Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created July 21, 2019 08:47
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/1f5fca2604ca9cab9bd555a63f938e6e to your computer and use it in GitHub Desktop.
Save luandevpro/1f5fca2604ca9cab9bd555a63f938e6e to your computer and use it in GitHub Desktop.
let testStr = "freeCodeCamp";
let ourRegex = /code/i;
let result = ourRegex.test(testStr);
console.log(result) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment