func(); var func = function() { console.log(2); } function func() { console.log(1); } func(); // RUNNING