So senden Sie Argumente in einem Array in JavaScript zurück

(function() {
  console.log([...arguments]);
}(1, 2, 3))
Crowded Camel