console.log.apply(console, args);
Math.max.apply(Math,number);
in the study of apply call, why is the first parameter of apply bound to the object? That is, why one parameter of console.log.apply (console, args); is console,Math.max.apply (Math,number); the first parameter is Math?
Array.prototype.slice.apply(arguments)
and the arguments? of this apply case