{"ScriptPreparationCode":"const uint8Array = new Uint8Array(81);\r\nconst simpleArray = new Array(81);\r\nlet temp = 0;\r\nlet r = 0;\r\n\r\nfor(let i = 0; i \u003C 81; i\u002B\u002B) {\r\n uint8Array[i] = simpleArray[i] = Math.floor(Math.random() * 2);\r\n}","TestCases":[{"Name":"uint8Array get/set","Code":"for (let i; i \u003C 10000; i\u002B\u002B)\r\n{\r\n r = Math.floor(Math.random() * 81);\r\n temp = uint8Array[r];\r\n r = Math.floor(Math.random() * 81);\r\n uint8Array[r] = temp;\r\n}","IsDeferred":false},{"Name":"plain array get/set","Code":"for (let i; i \u003C 10000; i\u002B\u002B)\r\n{\r\n r = Math.floor(Math.random() * 81);\r\n temp = simpleArray[r];\r\n r = Math.floor(Math.random() * 81);\r\n simpleArray[r] = temp;\r\n}","IsDeferred":false}]}