{"ScriptPreparationCode":"const arr = [\u0022first\u0022, \u0022second\u0022, \u0022third\u0022]","TestCases":[{"Name":"[] descruct","Code":"/*When writing async/deferred tests, use \u0060deferred.resolve()\u0060 to mark test as done*/\r\nconst [first, second, third] = arr;","IsDeferred":false},{"Name":"{} destruct","Code":"const {0:first, 1:second, 2:third} = arr;","IsDeferred":false},{"Name":"direct","Code":"const first = arr[0];\r\nconst second = arr[1];\r\nconst third = arr[2];","IsDeferred":false}]}