Consider the following JavaScript statement containing regular expressions and check if the pattern matches?
var text = “testing: 1, 2, 3”;
var pattern = /d+/g;
a) text==pattern
b) text.equals(pattern)
c) text.test(pattern)
d) pattern.test(text)
Answer: d
Explanation: The given pattern is applied to the text given in the parenthesis. The test() method tests for a match in a string. This method returns true if it finds a match, otherwise it returns false.
Related Posts
The ________ function can be used to create vectors of objects by concatenating things together.
What will be the output of the following R code?
> x <- vector(“numeric”, length = 10)
> xWhich of the following can be considered as object attribute?
R objects can have attributes, which are like ________ for the object.
Attributes of an object (if any) can be accessed using the ______ function.
Point out the correct statement?
If you explicitly want an integer, you need to specify the _____ suffix.
Join The Discussion