We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d33c7c commit 29031f0Copy full SHA for 29031f0
examples/chapter01_02/04-TruthyFalsy.js
@@ -24,4 +24,4 @@ testTruthy({}); // true (object is always true)
24
var obj = { name: 'John' };
25
testTruthy(obj); // true
26
testTruthy(obj.name); // true
27
-testTruthy(obj.age); // age (property does not exist)
+testTruthy(obj.age); // false (property age does not exist)
0 commit comments