{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var params = new Array(5000).fill(\u0027params\u0027);\r\nvar other = new Array(5000).fill(\u0027other\u0027);\r\nvar result = other.concat(params);","IsDeferred":false},{"Name":"spread operator","Code":"var params = new Array(5000).fill(\u0027params\u0027);\r\nvar other = new Array(5000).fill(\u0027other\u0027);\r\nvar result = [ ...other, ...params ]","IsDeferred":false}]}