The JavaScript code includes the console.log("http://test.org");
command. Its execution will:
- send a log with information about the currently executed script to the indicated address http://test.org.
- display on the console information about the progress of http://test.org page loading.
- display the following message on the console:
"http://test.org"
. - cause the page http://test.org to be loaded into the browser.
Answers Explanation & Hints:
The execution of the JavaScript code The |