PASSED(Check For Mixed Grouping of Characters) Thoughts on solution?


let myString = "Eleanor Roosevelt";
let myRegex = /(Franklin.*|Eleanor.*)Roosevelt/i; // 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:

1 Like

Thoughts on solution? If it passes the tests then it’s good to me.