From 29031f0bacc6496407d7bdde31c494a4952d5db0 Mon Sep 17 00:00:00 2001 From: Fernanda Freitas Date: Mon, 10 Apr 2023 10:17:26 -0300 Subject: [PATCH] Specified the value of 'false' and 'age' within the comment --- examples/chapter01_02/04-TruthyFalsy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chapter01_02/04-TruthyFalsy.js b/examples/chapter01_02/04-TruthyFalsy.js index c64fa3e1..0090ee74 100644 --- a/examples/chapter01_02/04-TruthyFalsy.js +++ b/examples/chapter01_02/04-TruthyFalsy.js @@ -24,4 +24,4 @@ testTruthy({}); // true (object is always true) var obj = { name: 'John' }; testTruthy(obj); // true testTruthy(obj.name); // true -testTruthy(obj.age); // age (property does not exist) +testTruthy(obj.age); // false (property age does not exist)