{"ScriptPreparationCode":null,"TestCases":[{"Name":"forEach loop 1234","Code":" list = [];\r\n for (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n list.push({ a: i, b: i, c: 0 });\r\n }\r\n\r\n list.forEach((v) =\u003E {\r\n v.c = v.a \u002B v.b;\r\n });","IsDeferred":false},{"Name":"for loop 1234","Code":" let list = [];\r\n for (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n list.push({ a: i, b: i, c: 0 });\r\n }\r\n\r\n const len = list.length;\r\n for (var i = 0; i \u003C len; i\u002B\u002B) {\r\n list[i].c = list[i].a \u002B list[i].b;\r\n }","IsDeferred":false}]}