The Test Method with Regex

Tell us what’s happening:

what’s wrong with the code?

Your code so far


let myString = "Hello, World!";
let myRegex = /Hello/;
myRegex.test(myString); // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/using-the-test-method

1 Like

@sojib-bd your code looks good but you have deleted what is was assigned to.
you have

 myRegex.test(myString); 

Instead of it been assigned to the result variable provided… like this.

let result = myRegex.test(myString);
1 Like