Here’s a no frills post about the falsy values in JS. In case you didn’t know, JavaScript considers some values as truthy and other as falsy. Most are deemed truthy so it’s a lot easier to simply remember the falsy ones. You can see the truthy vs falsy evaluation in action when using an if statement. The statement takes in an expression and coerces it to a boolean value using the ToBoolean algorithm.