Skip to content

Instantly share code, notes, and snippets.

View razouck's full-sized avatar
💭
I may be slow to respond.

Razouck razouck

💭
I may be slow to respond.
View GitHub Profile
@razouck
razouck / 1.js
Last active July 28, 2017 21:13
What equals `null`?
var something = 'anything';
console.log(
(something == null)
===
(something === undefined || something === null)
!==
(something === false)
); // true
@razouck
razouck / Default (Linux).json
Last active June 3, 2018 22:22
Sublime Text - Quick settings
[
{ "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" }
]