¿Cuál es la diferencia entre el parámetro explícito y el parámetro REST 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) {
  
}
Xenophobic Xenomorph