{"ScriptPreparationCode":"var obj = new Object();\r\nvar keys = new Array(100).fill(0).map((x, i) =\u003E {\r\n return i \u002B 1;\r\n});\r\nkeys.forEach((x) =\u003E {\r\n obj[\u0022prop\u0022 \u002B x] = {\r\n value: x\r\n };\r\n});\r\n\r\nvar array = [];\r\n\r\nlet i = 0;\r\nfor (i; i \u003C 100; i\u002B\u002B) {\r\n array[i] = {\r\n props: \u0022prop\u0022 \u002B i,\r\n value: i\r\n };\r\n}\r\n","TestCases":[{"Name":"Object","Code":"if (obj.hasOwnProperty(\u0027prop98\u0027)) {\r\n console.log(obj[\u0027prop98\u0027])\r\n}","IsDeferred":false},{"Name":"Array","Code":"array.forEach((value) =\u003E {\r\n if (value.props === \u0022prop98\u0022) {\r\n console.log(value.value);\r\n }\r\n});","IsDeferred":false}]}