Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarkdev/8e8a7a59e7aaa91da10509d1047024cc to your computer and use it in GitHub Desktop.
Save omarkdev/8e8a7a59e7aaa91da10509d1047024cc to your computer and use it in GitHub Desktop.
const firstWay = !! 'secret';
const secondWay = Boolean('secret');
const thirdWay = new Boolean('secret');
console.log(firstWay === true);
console.log(secondWay === true);
console.log(thirdWay === true);
// true
// true
// false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment