const myName = "Nkwuda Theophilus"; const myRegex = /[a-e]/ let result = myName.match(myRegex); console.log(result);
0 Comments