DEV Community

Mehul Lakhanpal
Mehul Lakhanpal

Posted on • Originally published at codedrops.tech

Javascript - Truth and Lies

const isTruthy = input => Boolean(input);

console.log(isTruthy(' ')); // true
console.log(isTruthy('')); // false
console.log(isTruthy(new String(''))); // true

console.log(isTruthy(new Boolean(false))); // true
Enter fullscreen mode Exit fullscreen mode

This post covers some of the truth and lies

Thanks for reading 💙

Follow @codedrops.tech for daily posts.

InstagramTwitterFacebook

Micro-Learning ● Web Development ● Javascript ● MERN stack ● Javascript

codedrops.tech

Top comments (0)