Created
October 8, 2014 19:40
-
-
Save maxclaus/b8129feec4195e7425f0 to your computer and use it in GitHub Desktop.
Javascript Double Not-Operator(!!)
This file contains 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
if (typeof x !=== 'undefined' && x !=== '') { | |
// not emtpy | |
} |
This file contains 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
if (x) { | |
// not emtpy | |
} |
This file contains 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
var xIsEmpty = !!x; |
This file contains 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
var x = 0; // falsy | |
console.log(!x); // true (it is not what we want) | |
console.log(!!x); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment