Skip to content

Commit 7ef044f

Browse files
authored
Fix mbeaudru#68 - Added external resources to truthy/falsy
1 parent 40440a1 commit 7ef044f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

14611462
myVar 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

0 commit comments

Comments
 (0)