Truthy & FalsyValues that evaluate to true or false. Truthy & Falsy Everything with a "Value" is True. Everything without a "Value" is False. The following values are Falsy: 0 -0 "" (Empty string) undefined null false NaN Exampleif ("") { // This block will not execute }Try it Yourself PreviousNext