javascrtipy var code example
Example 1: js var
var a;
console.log(a); // scrive in console "undefined" o "" a seconda del browser usato.
console.log('still going...'); // scrive in console "still going...".
Example 2: js var
var x = y, y = 'A';
console.log(x + y); // non definito