▲ Functional JavaScript, Part 3: .apply(), .call(), and the arguments object at tech.pro▼7 up and 0 down, posted by skiskilo 3860 days ago 1 comment
timoxley 3856 days ago. link 2 points ▲ ▼`arguments` is basically deprecated in favour of rest parameters in ES6. `arguments` doesn't even exist in arrow functions. [0] Also, the new spread operator means you will rarely need to use .apply(). [1] [0](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/rest_parameters) [1](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator)