{"ScriptPreparationCode":"var arr = Array.from({length: 10_000}, () =\u003E Math.floor(Math.random() * 2));\r\n","TestCases":[{"Name":"for-push","Code":"var result = [];\r\nfor (var i = 0; i \u003C arr.length; i\u002B\u002B) {\r\n var item = arr[i];\r\n if (item !== 0) {\r\n result.push(item);\r\n }\r\n}","IsDeferred":false},{"Name":"flatMap","Code":"arr.flatMap((x) =\u003E (x !== 0 ? [x] : []));","IsDeferred":false}]}