// untested! function sayHello(name){ var sayAlert; var newScope = function() { var text = 'Hello' + name; sayAlert = function() { alert(text) } } newScope(); var text = 'How confused am I?'; sayAlert(); }