DEV Community

Dhairya Shah
Dhairya Shah

Posted on

JavaScript Question: What will be the output?

What will be the output?

console.log(!!null);
console.log(!!'');
console.log(!!1);
Enter fullscreen mode Exit fullscreen mode

YouTube Channel Subscribers

Top comments (4)

Collapse
 
zippcodder profile image
Deon Rich

my honest guess is

false
false
true
Enter fullscreen mode Exit fullscreen mode

Honestly, not sure.

Collapse
 
amitkrs874 profile image
Amit

False
False
True

Collapse
 
zippcodder profile image
Deon Rich

True, though here it's just for show.

Collapse
 
aab595 profile image
Abdoul Aziz BA

False
False
True