Rick Waldron (2015-03-25T15:56:28.000Z)
d at domenic.me (2015-04-14T22:05:34.384Z)
This is correct, because only one _argument_ was passed, therefore the arguments object has only one entry. Parameters are not the same as Arguments. Therefore: foo(1, 3) => [1, 3] Because two arguments were passed. And: foo(1, 2, 3) => [1, 2, 3] Because three were passed. Hopefully that helps clarify?