{"ScriptPreparationCode":null,"TestCases":[{"Name":"spread operator","Code":"var other = [ 1, 2 ]\r\nvar other2 = [...other, 3]\r\nvar other3 = [...other2, 4]\r\nvar other4 = [...other3, 5]\r\nvar other5 = [...other4, 6]\r\nvar other6 = [...other5, 7]","IsDeferred":false},{"Name":"Array.from \u002B push","Code":"var other = [ 1, 2 ];\r\nvar other2 = Array.from(other); other2.push(3);\r\nvar other3 = Array.from(other2); other3.push(4)\r\nvar other4 = Array.from(other3); other4.push(5);\r\nvar other5 = Array.from(other4); other5.push(6);\r\nvar other6 = Array.from(other5); other6.push(7);","IsDeferred":false},{"Name":"Slice \u002B push","Code":"var other = [ 1, 2 ];\r\nvar other2 = other.slice(); other2.push(3);\r\nvar other3 = other2.slice(); other3.push(4)\r\nvar other4 = other3.slice(); other4.push(5);\r\nvar other5 = other4.slice(); other5.push(6);\r\nvar other6 = other5.slice(); other6.push(7);","IsDeferred":false},{"Name":"flat","Code":"var other = [ 1, 2 ];\r\nvar other2 = [other, [3]].flat()\r\nvar other3 = [other2, [4]].flat()\r\nvar other4 = [other3, [5]].flat()\r\nvar other5 = [other4, [6]].flat()\r\nvar other6 = [other5, [7]].flat()","IsDeferred":false}]}