showing results for - "what is the difference between explicit parameter and rest parameter javascript"
Sophia
31 Jan 2019
1// Voor rest parameters, kwam je het volgende wel eens tegen:
2function f(a, b){
3  var args = Array.prototype.slice.call(arguments, f.length);
4
5  // …
6}
7
8// Wat net hetzelfde is als:
9
10function f(a, b, ...args) {
11  
12}
13