>"use strict";
(function () {
console.debug("this1", this);
})();
this1 undefined
>"use strict";
function c() {
console.debug("this1", this);
};
c();
this1 Window
Внимание вопрос, как это объяснить?
>"use strict";
(function () {
console.debug("this1", this);
})();
this1 undefined
>"use strict";
function c() {
console.debug("this1", this);
};
c();
this1 Window
Внимание вопрос, как это объяснить?