Truthy and Falsy values in Javascript code example

Example 1: javascript falsy

// Falsy values:
0
''
undefined
null
NaN

Example 2: Truthy and Falsy js

//Checking truthy and falsy value

function truthyOrFalsy (val) { 
    if(val) {
      return true
    } else {
      return false
    }
}

console.log(truthyOrFalsy(0)) // print false
console.log(truthyOrFalsy(5)) // print true

Example 3: javascript truthy

// Truthy values:

// All values are truthy, BUT (excluding) the following:
0
''
undefined
null
NaN

Example 4: truthy and falsy values in javascript

if (true)
if ({})
if ([])
if (42)
if ("0")
if ("false")
if (new Date())
if (-42)
if (12n)
if (3.14)
if (-3.14)
if (Infinity)
if (-Infinity)