File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,14 @@ When you struggle to understand a notion, I suggest you look for answers on the
9696 - [ Error handling] ( #error-handling )
9797 - [ External resources] ( #external-resources-8 )
9898 + [ Truthy / Falsy] ( #truthy--falsy )
99+ - [ External resources] ( #external-resources-9 )
99100 + [ Static Methods] ( #static-methods )
100101 - [ Short Explanation] ( #short-explanation-1 )
101102 - [ Sample Code] ( #sample-code-7 )
102103 - [ Detailed Explanation] ( #detailed-explanation-2 )
103104 * [ Calling other static methods from a static method] ( #calling-other-static-methods-from-a-static-method )
104105 * [ Calling static methods from non-static methods] ( #calling-static-methods-from-non-static-methods )
105- - [ External resources] ( #external-resources-9 )
106+ - [ External resources] ( #external-resources-10 )
106107 * [ Glossary] ( #glossary )
107108 + [ Scope] ( #-scope )
108109 + [ Variable mutation] ( #-variable-mutation )
@@ -1460,6 +1461,12 @@ myVar ? "truthy" : "falsy"
14601461
14611462myVar is evaluated in a boolean context.
14621463
1464+ #### External resources
1465+
1466+ - [ Truthy (MDN)] ( https://developer.mozilla.org/en-US/docs/Glossary/Truthy )
1467+ - [ Falsy (MDN)] ( https://developer.mozilla.org/en-US/docs/Glossary/Falsy )
1468+ - [ Truthy and Falsy values in JS - Josh Clanton] ( http://adripofjavascript.com/blog/drips/truthy-and-falsy-values-in-javascript.html )
1469+
14631470### Static Methods
14641471
14651472#### Short explanation
You can’t perform that action at this time.
0 commit comments