Day 14 started up Chapter 4 of Eloquent Javascriot. This portion started up with arrays, which got me into a tangent on playing with passing an array to a function. Take for instance:
> Math.max(1, 2, 3);
3
You'd think that the following would work:
> var arr = [1, 2 …