Skip to content

Commit

Permalink
Fix #68 - Added external resources to truthy/falsy
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeaudru authored Oct 14, 2017
1 parent 40440a1 commit 7ef044f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,14 @@ When you struggle to understand a notion, I suggest you look for answers on the
- [Error handling](#error-handling)
- [External resources](#external-resources-8)
+ [Truthy / Falsy](#truthy--falsy)
- [External resources](#external-resources-9)
+ [Static Methods](#static-methods)
- [Short Explanation](#short-explanation-1)
- [Sample Code](#sample-code-7)
- [Detailed Explanation](#detailed-explanation-2)
* [Calling other static methods from a static method](#calling-other-static-methods-from-a-static-method)
* [Calling static methods from non-static methods](#calling-static-methods-from-non-static-methods)
- [External resources](#external-resources-9)
- [External resources](#external-resources-10)
* [Glossary](#glossary)
+ [Scope](#-scope)
+ [Variable mutation](#-variable-mutation)
Expand Down Expand Up @@ -1460,6 +1461,12 @@ myVar ? "truthy" : "falsy"

myVar is evaluated in a boolean context.

#### External resources

- [Truthy (MDN)](https://developer.mozilla.org/en-US/docs/Glossary/Truthy)
- [Falsy (MDN)](https://developer.mozilla.org/en-US/docs/Glossary/Falsy)
- [Truthy and Falsy values in JS - Josh Clanton](http://adripofjavascript.com/blog/drips/truthy-and-falsy-values-in-javascript.html)

### Static Methods

#### Short explanation
Expand Down

0 comments on commit 7ef044f

Please sign in to comment.