diff options
author | Ivan <ivan.bogdanovich2013@gmail.com> | 2021-10-28 20:43:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 20:43:38 +0300 |
commit | c77de98f41944d7e09c37ef32a6d479dd19fe48e (patch) | |
tree | 750816d4ddf1a18d89a36ca92e5c2aee7d90dedf /files/ru/glossary | |
parent | 00898838ea394238539a5aa1d9a4c3c33dd7e3d9 (diff) | |
download | translated-content-c77de98f41944d7e09c37ef32a6d479dd19fe48e.tar.gz translated-content-c77de98f41944d7e09c37ef32a6d479dd19fe48e.tar.bz2 translated-content-c77de98f41944d7e09c37ef32a6d479dd19fe48e.zip |
(ru) Add missed falsy value (#2892)
Diffstat (limited to 'files/ru/glossary')
-rw-r--r-- | files/ru/glossary/falsy/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/files/ru/glossary/falsy/index.html b/files/ru/glossary/falsy/index.html index 0db47302c4..06ed182d89 100644 --- a/files/ru/glossary/falsy/index.html +++ b/files/ru/glossary/falsy/index.html @@ -25,7 +25,7 @@ original_slug: Глоссарий/Falsy <td>Ключевое слово {{jsxref('Lexical_grammar','false','Зарезервированные_ключевые_слова_в_более_старых_версиях')}}</td> </tr> <tr> - <td>0</td> + <td>0, -0</td> <td>Число <a href="/ru/docs/Web/JavaScript/Data_structures#Типы_данных">zero</a></td> </tr> <tr> @@ -61,6 +61,7 @@ original_slug: Глоссарий/Falsy if (null) if (undefined) if (0) +if (-0) if (0n) if (NaN) if ('') |