Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created May 28, 2014 02:56
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 leohxj/d6ae9572e7b26167fde5 to your computer and use it in GitHub Desktop.
Save leohxj/d6ae9572e7b26167fde5 to your computer and use it in GitHub Desktop.
arguments对象转换成一个数组最好的办法就是 Array.prototype.slice.call
function y(){
var args = Array.prototype.slice.call(arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment