{"ScriptPreparationCode":null,"TestCases":[{"Name":"Push","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = params.push(1);","IsDeferred":false},{"Name":"Spread","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [...params, 1];","IsDeferred":false},{"Name":"Push Front","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = params.unshift(1);","IsDeferred":false},{"Name":"Spread Front","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [1, ...params];","IsDeferred":false}]}