Skip to content

Instantly share code, notes, and snippets.

@benhatsor
Created June 30, 2025 18:19
Show Gist options
  • Save benhatsor/23d56278f8a5f2462db166fabf06ee0f to your computer and use it in GitHub Desktop.
Save benhatsor/23d56278f8a5f2462db166fabf06ee0f to your computer and use it in GitHub Desktop.
Object destructuring with defined variables.
let a, b;
const obj = { a: 1, b: 2 };
({ a, b } = obj);
console.log(a, b); // 1 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment