Consider the following message displayed in a pop-up window: Welcome to the CIW Web site! Which line of code will deliver the pop-up window that displays this message?
Answer : B
Consider the following code:
var myString= "Hello World";
alert(myString.length);
What is the output when you run this script in the browser?
Answer : D
When using AJAX, what is the purpose of the XMLHttpRequest object?
Answer : D
Which of the following is a reason why a developer would use a JavaScript library?
Answer : B
Assuming the function <body onload="DisplayName()"> is called, which script block will display Hello Joe in the document window after you enter the name Joe?
Answer : B