RegExp object is a regular expression object with predefined properties and methods. Let’s see the simple usage of RegExp object:
1 2 3 | var regexp = new RegExp('\\w+'); console.log(regexp); // expected output: /\w+/ |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.