Login
Remember
Register
Ask a Question
The following code implements the ______ feature of ES6 function myFunction(x, y, z) { } var args = [0, 1, 2]; myFunction(...args);
0
votes
asked
Jan 21, 2020
in
ECMAScript
by
GeorgeBell
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
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 21, 2020
by
GeorgeBell
spread
...