{"ScriptPreparationCode":"const obj = {one: \u0022one\u0022, two: \u0022two\u0022, three: \u0022three\u0022, four: \u0022four\u0022, five: \u0022five\u0022 };\r\nconst length = 10000000;","TestCases":[{"Name":"Deconstruct","Code":"function deconstruct({one, two, three, four, five}) {\r\n const _one = one;\r\n const _two = two;\r\n const _three = three;\r\n const _four = four;\r\n const _five = five;\r\n}\r\n\r\nfor (let i = 0; i \u003C length; i\u002B\u002B) {\r\n deconstruct(obj);\r\n}","IsDeferred":false},{"Name":"No deconstruct","Code":"function deconstruct(_obj) {\r\n const _one = _obj.one;\r\n const _two = _obj.two;\r\n const _three = _obj.three;\r\n const _four = _obj.four;\r\n const _five = _obj.five;\r\n}\r\n\r\nfor (let i = 0; i \u003C length; i\u002B\u002B) {\r\n deconstruct(obj);\r\n}","IsDeferred":false}]}