{"ScriptPreparationCode":"var strs = Array.from(new Array(10000)).map(() =\u003E \u0027String concat. \u0027)\r\nvar result = []","TestCases":[{"Name":"Push with if","Code":"for (let i = 0; i \u003C strs.length; i\u002B\u002B) {\r\n if (i % 2 === 0){\r\n result.push(strs[i])\r\n }\r\n}","IsDeferred":false},{"Name":"map with filter","Code":"result = strs.map((a) =\u003E a).filter((a) =\u003E a % 2 === 0)","IsDeferred":false}]}