31.
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

32.
The regular expression to match any one character not between the brackets is

33.
What does /[^(]* regular expression indicate ?

34.
What will be the result when non greedy repetition is used on the pattern /a+?b/ ?

35.
What does the subexpression /java(script)?/ result in ?

36.
What is the most essential purpose of parantheses in regular expressions ?

37.
The method that performs the search-and-replace operation to strings for pattern matching is

38.
What would be the result of the following statement in JavaScript using regular expression methods ?

39.
The Crockford’s subset doesnot include which function in JavaScript?

40.
Why does JavaScript subset disallow == and !=?