Q. What will be the output of the following JavaScript code?
Code:
System.out.println( Pattern.matches("\d", "9") );
β
Correct Answer: (A)
true
System.out.println( Pattern.matches("\d", "9") );
You must be Logged in to update hint/solution