In JavaScript, every variable that is declared with the var keyword is "Hoisting" to the top of the execution context, right?
function testandoMsg (){
let b = 'B';
console.log(a);
console.log(b);
var a = 'A';
}
testandoMsg();...
asked by
28.06.2018 / 14:24