Truthiness & Types

Use truthiness and types with Transcrypt.

We'll cover the following...

Truthiness

There is a difference in truthiness between Python and JavaScript when it comes to empty lists, dictionaries, and sets. For example, in Python an empty list evaluates to False, whereas in JavaScript it evaluates to True. If we use the condition of a list being empty in an expression to ...