Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives of spread syntax

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?

like image 468
SoftTimur Avatar asked Dec 14 '22 21:12

SoftTimur


2 Answers

You could use function#apply, which takes the parameters as array.

The apply() method calls a function with a given this value, and arguments provided as an array (or an array-like object).

Array.prototype.push.apply(result, tree2table(child));
like image 90
Nina Scholz Avatar answered Dec 21 '22 11:12

Nina Scholz


Differenz

Array.prototype.push.apply(result, values) modifies instead of making a copy of an array

Example

const result = []
const values = ['a', 'b']
Array.prototype.push.apply(result, values)
console.log(result)

Solution

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
}

Compatible

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.

like image 30
Roman Avatar answered Dec 21 '22 09:12

Roman