๐ง under construction
Last updated 2 years ago
Was this helpful?
โฉ โฉ โฉ โฉ create
creating RegExp object.
const re = /ab+c/; // regular expression literal (static) const re = new RegExp('ab+c'); // RegExp constructor (dynamic)
โฉ โฉ