function t(age) { alert(age) } t(5) //5 t() //undefined
function t2(age){ var age = 99; alert(age) } t2();
function t3(greet){ var greet = 'hello'; alert(greet); function greet(){} alert(greet) } t3(null); //hello hello
function a(b){ alert(b); b = function(){ alert(b) } b(); } a(1);
function t1(){} t2 = function(){}