{"ScriptPreparationCode":"a = [{\r\n id: 1,\r\n aux: true\r\n}, {\r\n id: 2,\r\n aux: true\r\n}, {\r\n id: 3,\r\n aux: true\r\n}]","TestCases":[{"Name":"lodash","Code":"_.forEach(a, option =\u003E {\r\n if (option.id === 3) {\r\n option.aux = true;\r\n } else {\r\n option.aux = false;\r\n }\r\n });","IsDeferred":false},{"Name":"native","Code":"for (let i = 0; i \u003C a.length; i\u002B\u002B) {\r\n const option = a[i];\r\n if (option.id == 3) {\r\n\toption.aux = true ; \r\n } else {\r\n \toption.aux = false;\r\n }\r\n}","IsDeferred":false}]}