I see several uses of spread syntax in a code. For example:
function tree2table(tree) {
var children = tree[\"children\"];
if (children === undefined) re
Array.prototype.push.apply(result, values) modifies instead of making a copy of an array
const result = []
const values = ['a', 'b']
Array.prototype.push.apply(result, values)
console.log(result)
function tree2table(tree) {
var children = tree["children"];
if (children === undefined) return [];
var result = [];
for (var i = 0; i < children.length; i++) {
var child = children[i];
var link = [child["name"], tree["name"], child["size"]];
result.push(link);
Array.prototype.push.apply(result, tree2table(child))
}
return result
}
based on the version information
Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards, Internet Explorer 11 standards.
You could use function#apply, which takes the parameters as array.
The
apply()
method calls a function with a giventhis
value, andarguments
provided as an array (or an array-like object).
Array.prototype.push.apply(result, tree2table(child));