Select all the correct ways to create a RegExp object.
A)
let regex = 'abc+';
B)
let regex = /abc+/;
C)
let regex = new /20\d/;
D)
let regex = new RegExp('202\\d');
E)
let regex = new RegExp(/\w+/, 'g');Select all the correct ways to create a RegExp object.
A)
let regex = 'abc+';
B)
let regex = /abc+/;
C)
let regex = new /20\d/;
D)
let regex = new RegExp('202\\d');
E)
let regex = new RegExp(/\w+/, 'g');Create a free account to access the full topic