Skip to content

Instantly share code, notes, and snippets.

@anton-rudeshko
Last active December 14, 2015 21:19
Show Gist options
  • Save anton-rudeshko/5150360 to your computer and use it in GitHub Desktop.
Save anton-rudeshko/5150360 to your computer and use it in GitHub Desktop.
Всякие забавности в js
var a = [];
console.log(a == false); // true
console.log(!a == false); // true
console.log(!!a == false); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment