{"ScriptPreparationCode":"const length = 100000","TestCases":[{"Name":"Array from","Code":"function arrayFrom() {\r\n\tconst array = Array.from({length: length}, x =\u003E x = true)\r\n}","IsDeferred":false},{"Name":"Array loop","Code":"function arrayLoop() {\r\n\tconst array = [];\r\n \tfor (let i = 0; i \u003C length; i\u002B\u002B) array.push(true);\r\n}","IsDeferred":false},{"Name":"Array(length).fill","Code":"function arrayFill() {\r\n\tconst array = Array(length).fill(true);\r\n}","IsDeferred":false}]}