{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var one = [ \u0027one\u0027, \u0027two\u0027, \u0027three\u0027 ];\r\nvar two = [ \u0027four\u0027, \u0027five\u0027, \u0027six\u0027 ];\r\nvar three = one.concat(two);","IsDeferred":false},{"Name":"spread operator","Code":"var one = [ \u0027one\u0027, \u0027two\u0027, \u0027three\u0027 ];\r\nvar two = [ \u0027four\u0027, \u0027five\u0027, \u0027six\u0027 ];\r\nvar three = [ ...one, ...two ];","IsDeferred":false},{"Name":"Push","Code":"var one = [ \u0027one\u0027, \u0027two\u0027, \u0027three\u0027 ];\r\nvar two = [ \u0027four\u0027, \u0027five\u0027, \u0027six\u0027 ];\r\nvar three = one.push(...two);","IsDeferred":false}]}