{"ScriptPreparationCode":"var data = {\r\n id: 1,\r\n a: 1,\r\n b: \u0027\u0027,\r\n c: \u0027\u0027,\r\n d: false,\r\n e: \u0027\u0027,\r\n f: 1,\r\n g: {\r\n h: 1,\r\n i: \u0027Dannag\u0027\r\n },\r\n k: 1,\r\n l: 1,\r\n}","TestCases":[{"Name":"Property access","Code":"let result = 0;\r\nfor (const property in data) {\r\n if (typeof data[property] === \u0027number\u0027 \u0026\u0026 Number.isInteger(data[property])) {\r\n result \u002B= data[property];\r\n }\r\n}","IsDeferred":false},{"Name":"Pointer","Code":"let result = 0;\r\nfor (const property in data) {\r\n const value = data[property]; \r\n if (typeof value === \u0027number\u0027 \u0026\u0026 Number.isInteger(value)) {\r\n result \u002B= value;\r\n }\r\n}","IsDeferred":false}]}