Код: Выделить всё
console.log(this); // {}
(function func() {
console.log(this); // Object [global]
})();
Код: Выделить всё
'use strict';
console.log(this); // {}
(function func() {
console.log(this); // undefined
})();
Но когда я запускаю те же команды из терминала отдельно:
- Откройте PowerShell
- Тип узла
- Тип .editor
- Скопируйте и вставьте те же команды
- Нажмите Ctrl + D
Код: Выделить всё
console.log(this); // Object [global]
(function func() {
console.log(this); // Object [global]
})();
Код: Выделить всё
'use strict';
console.log(this); // Object [global]
(function func() {
console.log(this); // undefined
})();
- ОС: Windows 11
- PowerShell: 7.5.3
- Node.js: 22.15.0
Подробнее здесь: https://stackoverflow.com/questions/797 ... rom-termin
Мобильная версия