Tell us what’s happening:
Hi, solution says that using * makes possible to check for middle names, but I don’t get it. In a previous challenge it is said that * “matches characters that occur zero or more times”… what does that mean? Thank you!
Your code so far
let myString = "Eleanor Roosevelt";
let myRegex = /(Franklin|Eleanor).*Roosevelt/; // Change this line
let result = myRegex.test(myString); // Change this line
// After passing the challenge experiment with myString and see how the grouping works
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
.
Challenge: Check For Mixed Grouping of Characters
Link to the challenge: