Variables's values
by obobruyko
JavaScript
// What are the values of the variables?
var a = 5;
function runMe(a){
console.log( a == ___);
function innerRun(){
console.log( b == ___);
console.log(c == ___);
}
var b = 7;
innerRun();
var c = 8;
}
runMe(6);