{"ScriptPreparationCode":null,"TestCases":[{"Name":"slice","Code":"const n = 15000000;\r\nconst array = new Uint8ClampedArray(n);\r\n\r\nlet sum = 0;\r\nfor (let i = 0; i \u003C n; i \u002B= 4) {\r\n let [a, b, c, d] = array.slice(i, 4);\r\n sum \u002B= (a \u002B b \u002B c \u002B d);\r\n}","IsDeferred":false},{"Name":"index","Code":"const n = 15000000;\r\nconst array = new Uint8ClampedArray(n);\r\n\r\nlet sum = 0;\r\nfor (let i = 0; i \u003C n; i \u002B= 4) {\r\n let a = array[i];\r\n let b = array[i\u002B1];\r\n let c = array[i\u002B2];\r\n let d = array[i\u002B3];\r\n sum \u002B= (a \u002B b \u002B c \u002B d);\r\n}","IsDeferred":false}]}