Skip to content

Instantly share code, notes, and snippets.

@sofish
Created December 3, 2014 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sofish/f182451056bd567bd605 to your computer and use it in GitHub Desktop.
Save sofish/f182451056bd567bd605 to your computer and use it in GitHub Desktop.
drunk
// 这语法挺正常的
[].indexOf(0); // #1
// 这命名相比上面就醉了
[] instanceof Array; //#2
// 和一面一样的语法,又醉了
typeof []; //#3
// 坑也多
[].slice.call(document.querySelectorAll('*'));
// 也是可以填的
[].concat.apply([], document.querySelectorAll('*'));
// #1 IE8 不能用
// #3 就不吐槽了
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment