Junior — Senior
Determining the program output in the console
livecode
Task condition
Predict what values will be printed to the console after executing the following script.
var outer = 3;
function c() {
let inner = 4;
a = 2;
}
c();
console.log(a); // ?
console.log(outer); // ?