We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2cedcaf + faa542a commit 26fc93dCopy full SHA for 26fc93d
1 file changed
LearningJavaScriptDataStructuresandAlgorithmsThirdEdition_Code/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 is undefined)
0 commit comments