From ab53039fa1ee67490a84a8cb16ef57adf4a017a0 Mon Sep 17 00:00:00 2001 From: TrickyL Date: Sun, 24 Feb 2013 17:47:00 -0800 Subject: [PATCH] Update page/javascript-101/conditional-code.md Added the number zero to Values that evaluate to false --- page/javascript-101/conditional-code.md | 1 + 1 file changed, 1 insertion(+) diff --git a/page/javascript-101/conditional-code.md b/page/javascript-101/conditional-code.md index 3f4d39f8..4aa024d8 100644 --- a/page/javascript-101/conditional-code.md +++ b/page/javascript-101/conditional-code.md @@ -55,6 +55,7 @@ In order to use flow control successfully, it's important to understand which ki ``` // Values that evaluate to false +0.0; // The number zero ""; // an empty string NaN; // JavaScript's "not-a-number" variable null;