Many times I’m using the string match function to know if a string matches a regular expression.

if(str.match(/{regex}/))

Is there any difference between this:

if (/{regex}/.test(str))

They seem to give the same result?

2 Answers
2

Leave a Reply

Your email address will not be published. Required fields are marked *