{"ScriptPreparationCode":"var pushed = [];\r\nfor (let i = 0; i \u003C 1000; i\u002B\u002B) pushed.push(undefined);\r\nvar filled = (new Array(1000)).fill(undefined);","TestCases":[{"Name":"Create: Push","Code":"const a = [];\r\nfor(let i = 0; i \u003C 1000; i\u002B\u002B) a.push(undefined);","IsDeferred":false},{"Name":"Create: Fill","Code":"const a = (new Array(1000)).fill(undefined);","IsDeferred":false},{"Name":"Read: Push","Code":"pushed[Math.floor(Math.random()*1000)];","IsDeferred":false},{"Name":"Read: Fill","Code":"filled[Math.floor(Math.random()*1000)];","IsDeferred":false}]}