Interview Preparation Coding Interview Objective
May 09, 2013

What is the output of bellow JavaScript code?
<script type="text/javascript">
function x()
{
var st = "global web logic";
var pattern = new RegExp("WEB","i");
document.write(st.match(pattern));
}
</script>

Choose the correct answer:
A) Error
B) Null
C) web
D) WEB
Detailed Explanation

Option  B is the right Answer.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback