javascript truthy value code example
Example 1: js convert truthy
!!"" // false
!!0 // false
!!null // false
!!undefined // false
!!NaN // false
!!"hello" // true
!!1 // true
!!{} // true
!![] // true
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: JS truthy value of void
//////////////////////////////////////////////
// Truthy value of void is false
//////////////////////////////////////////////
function coolFunction() {
// do stuff
}
let truthyValue = (coolFunction() == true) // false