1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-27 14:58:59 +02:00

Fix for issue #1248 [fa-ir, zh-cn, ko-kr, es-es, ru-ru, fr-fr, de-de]

This commit is contained in:
Gerson Lázaro
2015-10-05 15:20:35 -05:00
parent d1a822f96c
commit e848adf9d5
7 changed files with 0 additions and 21 deletions

View File

@@ -499,9 +499,6 @@ myNumber === myNumberObj; // = false
if (0){
// This code won't execute, because 0 is falsy.
}
if (Number(0)){
// This code *will* execute, because Number(0) is truthy.
}
```