Skip to content

Instantly share code, notes, and snippets.

@srezasm
Created September 6, 2020 13:33
Show Gist options
  • Save srezasm/30f98415ea14829f4a8eb45bbb964b0e to your computer and use it in GitHub Desktop.
Save srezasm/30f98415ea14829f4a8eb45bbb964b0e to your computer and use it in GitHub Desktop.
convert to boolean
const isTrue = !0;
const alsoFalse = !!0;
console.log(isTrue);
// Result: true
console.log(alsoFalse);
// Result: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment