JS Coding Questions Logo
JS Coding Questions
#159💼 Interview💻 Code

What is a RegExp object

Advertisement

728x90

RegExp object is a regular expression object with predefined properties and methods. Let's see the simple usage of RegExp object,

javascript
1var regexp = new RegExp("\\w+");
2
3console.log(regexp);
4// expected output: /\w+/

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 74

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
159of476