Q. What will be the output of the following JavaScript code?
Code:
System.out.println( Pattern.matches("[^lfc]", "letsfind") );
β
Correct Answer: (B)
false
System.out.println( Pattern.matches("[^lfc]", "letsfind") );
You must be Logged in to update hint/solution