Created
July 30, 2016 13:43
-
-
Save r37r0m0d3l/65c3cf4f92f7bdf52d56bfa374868b8c 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
| console.log("null === 0 ➜ ", null === 0); // false | |
| console.log("null == 0 ➜ ", null == 0); // false | |
| console.log("null > 0 ➜ ", null > 0); // false | |
| console.log("null < 0 ➜ ", null < 0); // false | |
| console.log("null >= 0 ➜ ", null >= 0); // true | |
| console.log("null <= 0 ➜ ", null <= 0); // true | |
| console.log("\n"); | |
| console.log("1 ➜ ", 1); // 1 | |
| console.log("1..__proto__ ➜ ", 1..__proto__); // [Number: 0] | |
| console.log("1..__proto__.__proto__ ➜ ", 1..__proto__.__proto__); // {} | |
| console.log("1..__proto__.__proto__.__proto__ ➜ ", 1..__proto__.__proto__.__proto__); // null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment