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

Добавляет нюанс булевого преобразования #5545

Merged
merged 4 commits into from
Nov 18, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion js/boolean/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,17 @@ const truthy1 = Boolean(true),
truthy3 = Boolean('false'),
truthy4 = Boolean('Су Лин'),
truthy5 = Boolean([]),
truthy6 = Boolean({})
truthy6 = Boolean({}),
truthy7 = Boolean('0'),
truthy8 = Boolean(' ')
```

Обратите внимание, что строка `'false'` преобразуется в логическое `true`. Так происходит потому, что непустая строка в JavaScript считается _truthy_ значением — то есть таким, которое приводится к `true`.

То же и с пустыми массивом `[]` и объектом `{}`. Они считаются _truthy_ значениями, поэтому приводятся к `true`.

Также интересен нюанс, что `'0'` превращается в `true`, как и `' '`, потому что это непустая строка.
TatianaFokina marked this conversation as resolved.
Show resolved Hide resolved

Обратите внимание на списки [truthy](https://developer.mozilla.org/ru/docs/Словарь/Truthy) и [falsy](https://developer.mozilla.org/ru/docs/Словарь/Falsy) значений в JavaScript.

### Сравнить строку с числом
Expand Down
Loading