Skip to content

Instantly share code, notes, and snippets.

@zhangkn
Created May 21, 2018 12:28
Show Gist options
  • Save zhangkn/00eb239ed904dd6f3f740a55d2911bda to your computer and use it in GitHub Desktop.
Save zhangkn/00eb239ed904dd6f3f740a55d2911bda to your computer and use it in GitHub Desktop.
var a = function(){
console.log(3 === arguments.length);
console.log(100 === arguments[0]);
console.log(200 === arguments[1]);
console.log(300 === arguments[2]);
};
a(100,200,300);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment