f(); // alerts "Hi" function f() { alert("Hi") }
f(); // "f" is not a function var f = function() { alert("Hi") };