Making full use of the Arguments object
In Javascript, arguments are the variables passed to a function. We might think of a soda machine that accepts coins that are then processed, returning your favorite carbonated beverage. Likening this to a function, the coins are arguments. In general these arguments are accessed by named variables as represented in the following example by str1 [...]
