{"ScriptPreparationCode":"let a = new Array(999999).fill(100)\r\nfunction testGog(arr){\r\n console.time();\r\n a.filter(i =\u003E !!i);\r\n console.timeEnd();\r\n}\r\ntestGog(a)","TestCases":[{"Name":"test filter with Boolean","Code":"let a = new Array(999999).fill(100)\r\nfunction testGog(arr){\r\n console.time();\r\n a.filter(Boolean);\r\n console.timeEnd();\r\n}\r\ntestGog(a)","IsDeferred":false},{"Name":"without boolean","Code":"let a = new Array(999999).fill(100)\r\nfunction testGog(arr){\r\n console.time();\r\n a.filter(i =\u003E !!i);\r\n console.timeEnd();\r\n}\r\ntestGog(a)","IsDeferred":false}]}