嵌套解构 嵌套解构const user = { id: 123, name: 'hehe'};const { education: { degree } = {}} = user;console.log(degree); //prints: undefined