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)