Влияет ли if(условие){код с this} на контекст this?
Ответ
Нет
function someFunc() {
console.log(this);
var that = this;
if (true) {
console.log(this);
console.log(this === that);
}
}
someFunc.call("Iam context");
Комментариев нет:
Отправить комментарий