{"ScriptPreparationCode":"var obj = {}, id;\r\nfor (let i = 0; i \u003C= 100; i\u002B\u002B){\r\n obj[\u0027param\u0027\u002Bi] = i;\r\n}\r\n\r\nlet hasOwnProperty = Object.prototype.hasOwnProperty;\r\n","TestCases":[{"Name":"hasOwnProperty call","Code":"for(id in obj)\r\n{\r\n if(hasOwnProperty.call(obj, id))\r\n {}\r\n}","IsDeferred":false},{"Name":"hasOwnProperty regular","Code":"for(id in obj)\r\n{\r\n if(obj.hasOwnProperty(id))\r\n {}\r\n}","IsDeferred":false}]}