{"ScriptPreparationCode":"var object = {\r\n data: {\r\n one: {\r\n two: {\r\n three: 4\r\n }\r\n }\r\n },\r\n};","TestCases":[{"Name":"dot","Code":"const data = object.data;\r\nconst one = data.one;\r\nconst two = one.two;\r\nconst three = two.three;","IsDeferred":false},{"Name":"destructure","Code":"const { data } = object;\r\nconst { one } = data;\r\nconst { two } = one;\r\nconst { three } = two;","IsDeferred":false}]}