

MCQOPTIONS
Saved Bookmarks
1. |
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 |
A. | Text==pattern |
B. | Text.equals(pattern) |
C. | Text.test(pattern) |
D. | Pattern.test(text) |
Answer» E. | |