{"ScriptPreparationCode":"var data = Array(1000000).fill({\r\n filtering: true,\r\n mapping: 42\r\n});","TestCases":[{"Name":"lodash map","Code":"const aux = [];\r\n_.map(data, el =\u003E {aux.push(el.filtering)});","IsDeferred":false},{"Name":"lodash forEach","Code":"const aux = [];\r\n_.forEach(data, el =\u003E {aux.push(el.filtering)});","IsDeferred":false},{"Name":"native for","Code":"const aux = [];\r\nfor (let index = 0; index \u003C data.length; index\u002B\u002B) {\r\n const el = data[index];\r\n aux.push(el.filtering)\r\n}","IsDeferred":false}]}