Guest User

Untitled

a guest
May 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var a = function(){
  2. console.log(3 === arguments.length);
  3. console.log(100 === arguments[0]);
  4. console.log(200 === arguments[1]);
  5. console.log(300 === arguments[2]);
  6. };
  7. a(100,200,300);
Add Comment
Please, Sign In to add comment