0 votes
in ECMAScript by
The following code implements the ______ feature of ES6

function myFunction(x, y, z) { }

var args = [0, 1, 2];

myFunction(...args);

(1)sets

(2)spread

(3)rest

(4)maps

1 Answer

0 votes
by
spread
...