Better Programming

Advice for programmers.

Follow publication

Member-only story

3 Practical Uses of Object Destructuring in JavaScript

Jim Rottinger
Better Programming
Published in
3 min readMay 26, 2019

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:

  1. You can leave off one or more parameters when calling the function
  2. Order does not matter when passing in arguments.
  3. 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.

2. Cleanly Parse a Server Response

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Jim Rottinger
Jim Rottinger

Written by Jim Rottinger

10+ years working with startups 💡. Currently working at Square — formerly at Google, Looker, Weebly. Writing about JavaScript | Web Development | Programming

Responses (3)

Write a response