function a(ab) { var ab; alert(ab); } a(4);
var scope = "глобальная"; function f() { alert(scope); var scope = "локальная"; alert(scope); } f();