{"ScriptPreparationCode":"const text = new Array(2000000).fill(\u0022a\u0022).join(\u0022\u0022);","TestCases":[{"Name":"for","Code":"const text = new Array(2000000).fill(\u0022a\u0022).join(\u0022\u0022);\r\nconst string = new Array(text.length);\r\nfor (let i = 0; i \u003C text.length; i\u002B\u002B) {\r\n string[i] = text[i];\r\n}","IsDeferred":false},{"Name":"for ... of","Code":"const text = new Array(2000000).fill(\u0022a\u0022).join(\u0022\u0022);\r\nconst string = [];\r\nfor (const char of text) {\r\n string.push(char);\r\n}","IsDeferred":false}]}