We're a place where coders share, stay up-to-date and grow their careers.
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
You actually don't need dynamic de-structuring to swap values of two variables without using any extra variable: