Created
March 4, 2020 21:14
-
-
Save omarkdev/ec6045e032afa733ff796252b1c3044d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const firstWay = !! 'secret'; | |
const secondWay = Boolean('secret'); | |
const thirdWay = new Boolean('secret'); | |
console.log(typeof firstWay); | |
console.log(typeof secondWay); | |
console.log(typeof thirdWay); | |
// boolean | |
// boolean | |
// object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment