🔰creating regex

🚧 under construction

JSvalueobjectregex ⟩ create

creating RegExp object.

const re = /ab+c/;                // regular expression literal (static)
const re = new RegExp('ab+c');    // RegExp constructor (dynamic)

Last updated