DEV Community

Discussion on: Destructuring JavaScript objects like a pro

Collapse
 
mckabue profile image
Kabue Charles • Edited

You actually don't need dynamic de-structuring to swap values of two variables without using any extra variable:

const { prop1: prop2, prop2: prop1 } = { prop1: "value1", prop2: "value2" }

console.log(prop1) // value2
console.log(prop2) // value1