what is the difference between explicit parameter and rest parameter javascript
// Voor rest parameters, kwam je het volgende wel eens tegen:
function f(a, b){
var args = Array.prototype.slice.call(arguments, f.length);
// …
}
// Wat net hetzelfde is als:
function f(a, b, ...args) {
}