0 votes
in JavaScript by
How do you search a string for a pattern in Javascript?

1 Answer

0 votes
by

You can use the test() method of regular expression in order to search a string for a pattern, and return true or false depending on the result.

var pattern = /you/;
console.log(pattern.test("How are you?")); //true
...