What is the value of "n1" and "n2" after executing the following code? var str = "Finding foo in Foo and Bar"; var n1 = str.search("Foo"); var n2 = str.search(/Foo/i);
Correct Answer: n1 = 15, n2 = 8
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More PHP MCQ Questions