1.

The following code implements the ______ feature of ES6

Answer»

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

Anwer:-(2)spread



Discussion

No Comment Found