en.javascript.info/1-js/5-functions-closures/7-with/1-with-function/task.md
Ilya Kantor 87bf53d076 update
2014-11-16 01:40:20 +03:00

18 lines
206 B
Markdown

# With + функция
[importance 5]
Какая из функций будет вызвана?
```js
function f() { alert(1) }
var obj = {
f: function() { alert(2) }
};
with(obj) {
f();
}
```