{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.from","Code":"const fooArr = new Array();\r\nfor(let i=0;i\u003C100;i\u002B\u002B) {\r\n fooArr.push(i);\r\n}\r\nconst other = Array.from(fooArr);","IsDeferred":false},{"Name":"Spread","Code":"const fooArr = new Array();\r\nfor(let i=0;i\u003C100;i\u002B\u002B) {\r\n fooArr.push(i);\r\n}\r\nconst other = [...fooArr];","IsDeferred":false}]}