Q. Consider the following statements
var text = "testing: 1, 2, 3"; // Sample text
var pattern = /d+/g // Matches all instances of one or more digits
In order to check if the pattern matches with the string “text”, the statement is

  • (A) text==pattern
  • (B) text.equals(pattern)
  • (C) text.test(pattern)
  • (D) pattern.test(text)
πŸ’¬ Discuss
βœ… Correct Answer: (D) pattern.test(text)
Explanation: The given pattern is applied on the text given in the parenthesis.
Explanation by: Mr. Dubey
The given pattern is applied on the text given in the parenthesis.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
137
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
98%
Success Rate