const obj = { number: 100 }
const { number } = obj
//使用别名
const { number: otherNumber } = obj
console.log(otherNumber)   // 100

相关文章: