Javascript “Bang, Bang. I Shot You Down” - Use of Double Bangs (!!) in Javascript.

How to keep from getting shot down while using double bangs

Patrick Divine
Jun 18, 2017 · 3 min read
Image for post
Image for post

TLDR;

Javascript ‘Truthy’ Values

Boolean Operations

The First Shot — A Single Bang!

!true; // Returns false.
!false; // Returns true.

The Second Shot — Double Bang!

How The Double Bang Can Be Used

Gotchas! Oh, No! I Shot You Down!

const x = '';
!!x;
const x = '';
!!x; // Evaluates to false.

Bang, Bang. I hope I didn’t shoot you down!

Better Programming

Advice for programmers.

Medium is an open platform where 170 million readers come to find insightful and dynamic thinking. Here, expert and undiscovered voices alike dive into the heart of any topic and bring new ideas to the surface. Learn more

Follow the writers, publications, and topics that matter to you, and you’ll see them on your homepage and in your inbox. Explore

If you have a story to tell, knowledge to share, or a perspective to offer — welcome home. It’s easy and free to post your thinking on any topic. Write on Medium

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store