en.javascript.info/1-js/5-functions-closures/7-with/1-with-function/task.md
2015-03-10 12:36:58 +03:00

212 B

With + функция

[importance 5]

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

function f() {
  alert(1)
}

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

with(obj) {
  f();
}