I see several uses of spread syntax in a code. For example:
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);
result.push(...tree2table(child))
}
return result
}
However, spread syntax is not supported in IE. Does anyone know what is the best way to change result.push(...tree2table(child))
such that it becomes cross-browser and as efficient as before?
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));
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With