Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Область видимости и замыкания Глава 4: Поднятие переменных (Hoisting) #260

Open
ghost opened this issue Feb 4, 2023 · 0 comments

Comments

@ghost
Copy link

ghost commented Feb 4, 2023

Последний пример главы:

Объявления функций, которые появляются внутри обычных блоков, обычно поднимаются в окружающей области видимости, вместо того чтобы быть условными как показывает код ниже:

foo(); // "b"

var a = true;
if (a) {
   function foo() { console.log( "a" ); }
}
else {
   function foo() { console.log( "b" ); }
}

==================
Данный пример является не валидным т.к. при его воспроизведении выбрасывает ошибку TypeError, а не b, как указано в примере.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants