Q. Consider the following statement containing regular expressions
var text = "testing: 1, 2, 3";
var pattern = /d+/g;
In order to check if the pattern matches, the statement is
var text = "testing: 1, 2, 3";
var pattern = /d+/g;
In order to check if the pattern matches, the statement is
β
Correct Answer: (D)
pattern.test(text)
Explanation: The given pattern is applied on the text given in the paranthesis.