logo CodeStepByStep logo

eventMystery5

Language/Type: JavaScript events
Author: Melissa Hovik (on 2018/05/21)

Write the console output that would result after the following JavaScript program is executed. Your answer should have each console statement on its own line in order of when it is executed.

(function() {
    console.log("Foo");
    window.onload = pageLoad;
    console.log("Baz");
    
    function pageLoad() {
        console.log("Bar");
    }
    
    function foo() {
        console.log("Mumble");
    }
})();
        
output

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.