{"ScriptPreparationCode":"const ro = new ResizeObserver((entries) =\u003E {\r\n const childHeightArray = [];\r\n entries.forEach((entry) =\u003E {\r\n return childHeightArray.push(entry.contentRect.height);\r\n });\r\n\r\n console.log(childHeightArray);\r\n });\r\n document.querySelectorAll(\u0027.box\u0027)","TestCases":[{"Name":"map","Code":"const ro = new ResizeObserver((entries) =\u003E {\r\n const childHeightArray = [];\r\n entries.forEach((entry) =\u003E {\r\n return childHeightArray.push(entry.contentRect.height);\r\n });\r\n\r\n console.log(childHeightArray);\r\n });\r\n document.querySelectorAll(\u0027.box\u0027)","IsDeferred":false},{"Name":"foreach","Code":"const ro = new ResizeObserver((entries) =\u003E {\r\n const childHeightArray = [];\r\n entries.map((entry) =\u003E {\r\n return childHeightArray.push(entry.contentRect.height);\r\n });\r\n\r\n console.log(childHeightArray);\r\n });\r\n document.querySelectorAll(\u0027.box\u0027)","IsDeferred":false}]}