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
var object; | |
object = {}; | |
object = new Object(); | |
object = new Object(null); | |
object = new Object(undefined); | |
object = Object.create(Object.prototype); | |
object = Reflect.constructor(Object.prototype); | |
var prop = 'value'; |
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
var something = 'anything'; | |
console.log( | |
(something == null) | |
=== | |
(something === undefined || something === null) | |
!== | |
(something === false) | |
); // true |
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
[ | |
{ "keys": ["ctrl+'"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
{ "keys": ["ctrl+\\"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"} }, | |
{ "keys": ["ctrl+;"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+alt+h"], "command": "toggle_side_bar" } | |
] |
NewerOlder