Member-only story
3 Practical Uses of Object Destructuring in JavaScript
Write cleaner code using these destructuring patterns

By now you are probably quite familiar with destructuring in JavaScript! It came to us back in 2015 in the ES6 Specification, but if you need to brush up on it, Mozilla has a great in-depth article on how it works.
Knowing how destructuring works is not the same as knowing how to use it, however. Here are three destructuring patterns you can use to make your code cleaner, more robust, and more readable!
1. Named Function Arguments
Named arguments are an alternative way to handle function parameters rather than by position. Instead of ordering your arguments in the same order as the function signature, you simply specify the argument by name. For example, in Python:
As you can see, the order of the arguments does not matter — you just specify them by name. The benefits of named arguments vs. positional are:
- You can leave off one or more parameters when calling the function
- Order does not matter when passing in arguments.
- More readable code when calling a function that might exist elsewhere
While true named arguments do not exist in JavaScript, we can use a destructuring pattern to achieve all 3 of the same benefits. Here is the same code as above, but in JavaScript:
This patterns hits all of our goals for named arguments. We were able to leave off the argument c
, the order does not matter, and we assign our argument by referencing them by name. This is all made possible by object destructuring.