All you know that arguments is a special object that holds all the arguments passed to the function.
arguments
And as long as it is not an array - you cannot use
This can be a way:
var args = Array.from(arguments).slice(1);