{"ScriptPreparationCode":null,"TestCases":[{"Name":"reduce \u002B Array.prototype.concat","Code":"var params = [[ 1, 2 ], [ \u0022hello\u0022, true, 7 ]];\r\nvar other = params.reduce((acc, val) =\u003E acc.concat(val), []);","IsDeferred":false},{"Name":"Array.prototype.flat","Code":"var params = [[1, 2, params], [ \u0022hello\u0022, true, 7 ]];\r\nvar other = params.flat();","IsDeferred":false},{"Name":"concat using decomposition","Code":"var params = [[ 1, 2 ], [ \u0022hello\u0022, true, 7 ]];\r\nvar other = [].concat(...params);","IsDeferred":false}]}