summaryrefslogtreecommitdiffhomepage
path: root/fa-ir
diff options
context:
space:
mode:
Diffstat (limited to 'fa-ir')
-rw-r--r--fa-ir/javascript.html.markdown3
1 files changed, 0 insertions, 3 deletions
diff --git a/fa-ir/javascript.html.markdown b/fa-ir/javascript.html.markdown
index 5c64d24a..fe3555af 100644
--- a/fa-ir/javascript.html.markdown
+++ b/fa-ir/javascript.html.markdown
@@ -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.
-}
```