created by Brian LeRoux & Andrew Lunny. sparodically uncurated by David Trejo.

@AtomFusion shows us that true sometimes has a value.

    (true + 1) === 2;​ ​// true
    (true + true) === 2; // true
    true === 2; // false
    true === 1; // false

Wow wtf.

Fork me on GitHub