Created
December 3, 2014 07:22
-
-
Save sofish/f182451056bd567bd605 to your computer and use it in GitHub Desktop.
drunk
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
// 这语法挺正常的 | |
[].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