{"ScriptPreparationCode":"let typedarr = new Float32Array(1000000);\r\nlet array = Array.from({length: 1000000}, () =\u003E 0)","TestCases":[{"Name":"Typed array","Code":"typedarr[0] = Math.random();\r\nfor (let i = 2; i \u003C 1000000; i\u002B\u002B) {\r\n typedarr[i] = typedarr[i - 1] \u002B typedarr[i - 2];\r\n}","IsDeferred":false},{"Name":"Array","Code":"array[0] = Math.random();\r\nfor (let i = 2; i \u003C 1000000; i\u002B\u002B) {\r\n array[i] = array[i - 1] \u002B array[i - 2];\r\n}","IsDeferred":false}]}