{"ScriptPreparationCode":"var params = [[ 1, 2 ], [ \u0022hello\u0022, true, 7 ], [3, 4, 5]];","TestCases":[{"Name":"concat \u002B apply","Code":"var other = [].concat.apply([], params)","IsDeferred":false},{"Name":"apply vs reduce","Code":"var other = params.reduce((acc, val) =\u003E acc.concat(val), []);","IsDeferred":false},{"Name":"concat vs flat","Code":"var other = params.flat();","IsDeferred":false}]}