var use in js {} code example
Example 1: js var
var a = 'A';
var b = a;
// è come dire:
var a, b = a = 'A';
Example 2: js var
function x() {
y = 1; // Genera un ReferenceError in strict mode
var z = 2;
}
x();
console.log(y); // scrive "1" in console
console.log(z); // Genera un ReferenceError: z non è definita fuori dalla funzione x