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

Related questions

0 votes
asked Jun 15, 2023 in R Basics by john ganales
0 votes
asked Jan 21, 2020 in ECMAScript by GeorgeBell
...