{"ScriptPreparationCode":null,"TestCases":[{"Name":"Without destructuring","Code":"const array = new Array(3);\r\n\r\nfor (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n\tconst length = array.length;\r\n}","IsDeferred":false},{"Name":"With destructuring","Code":"const array = new Array(3);\r\n\r\nfor (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n\tconst {length} = array;\r\n}","IsDeferred":false},{"Name":"With destructuring and renaming","Code":"const array = new Array(3);\r\n\r\nfor (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n\tconst {length: property} = array;\r\n}","IsDeferred":false}]}