Skip to content

Instantly share code, notes, and snippets.

@ashwinkumar2438
Created August 30, 2020 16:13
Show Gist options
  • Save ashwinkumar2438/595f37af456081102d3fdc8f1146bba7 to your computer and use it in GitHub Desktop.
Save ashwinkumar2438/595f37af456081102d3fdc8f1146bba7 to your computer and use it in GitHub Desktop.
let x="abc";
let re1=new RegExp(x); // output: /abc/
let re2=/x/; // output: /x/ won't work as a variable in literal notation.
re1.test("abcdefg"); //true
re2.test("abcdefg"); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment