en.javascript.info/01-js/05-functions-closures/07-with/01-with-function/task.md
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

206 B

With + функция

[importance 5]

Какая из функций будет вызвана?

function f() { alert(1) }

var obj = { 
  f: function() { alert(2) } 
};

with(obj) {
  f();
}