logo CodeStepByStep logo

parameterMystery3

Language/Type: JavaScript parameter mystery reference semantics
Author: Melissa Hovik (on 2016/09/25)

Assume the following functions are defined:

function main() {
    let foo = "bar";
    let baz = "foo";
    let bar = "mumble";
    mystery(foo, baz, bar);
    mystery(bar, "baz", "foo");
    mystery(bar, bar, "mumble");
}

function mystery(baz, bar, foo) {
    console.log("And the " + baz + " raises the " + foo + " " + bar + "!");
}
What console output would result from calling main?
mystery(foo, baz, bar);
mystery(bar, "baz", "foo");
mystery(bar, bar, "mumble");

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.