Skip to content

Use-Object-Destructuring

Documentation Index

Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt

Use this file to discover all available pages before exploring further.

Sourcery rule id: use-object-destructuring

Section titled “Sourcery rule id: use-object-destructuring”

Prefer object destructuring when accessing and using properties.

const firstName = user.firstName;
const {firstName} = user;

Object destructuring can often remove an unnecessary temporary reference, as well as making your code more succinct.

From the Airbnb Javascript Style Guide