{"ScriptPreparationCode":null,"TestCases":[{"Name":"forEach","Code":"const testArray = [30, 31, 32, 29, 31, 16, 24, 22, 43, 56, 25, 34];\r\nlet outpUtArray = [];\r\n\r\ntestArray.forEach(element =\u003E {\r\n outpUtArray.push(element * element);\r\n});","IsDeferred":false},{"Name":"map","Code":"const testArray = [30, 31, 32, 29, 31, 16, 24, 22, 43, 56, 25, 34];\r\n\r\nconst mapArray2 = testArray\r\n .map(element =\u003E {\r\n return element * element; \r\n}); ","IsDeferred":false}]}