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

22 lines
212 B
Markdown

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