diff --git a/page/javascript-101/conditional-code.md b/page/javascript-101/conditional-code.md index 3f4d39f8..bc336843 100644 --- a/page/javascript-101/conditional-code.md +++ b/page/javascript-101/conditional-code.md @@ -59,6 +59,7 @@ In order to use flow control successfully, it's important to understand which ki NaN; // JavaScript's "not-a-number" variable null; undefined; // be careful -- undefined can be redefined! +0; // the number zero ``` ## Conditional Variable Assignment with the Ternary Operator