Interview Preparation
Coding Interview
Objective
May 09, 2013
What is the output of bellow JavaScript code?
<script type="text/javascript">
var st = new Array();
st[0] = "Web Development";
st[1] = "Application Development"
st[2] = "Testing"
st[3] = "Chadha Software Technologies";
document.write(st[0,1,2,3]);
</script>
Detailed Explanation
Option A is the right Answer.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts