We can create regular expressions by using the RegExp constructor or by using a literal notation with slashes (/.../).
let regex = /pattern/;
let regex = new RegExp('pattern');
let regex = /hello Coders/;
Special characters with special meanings like `^`, `$`, `.`, `*`, `+`, `?`, `\`, `()`, `[]`, `{}`, etc.