__The Falsey Problem__
```js
// if 0 is not a "falsey" value, then we gotz a problem
const foo = 0 || 5;
```
