Function scope
function
sayHello()
{
var
greeting =
"Hello world!"
;
alert
(greeting);
}
OSDC13