How to set default value in JavaScript’s Destructuring

Article autor
September 9, 2025
How to set default value in JavaScript’s Destructuring
Elixir Newsletter
Join Elixir newsletter

Subscribe to receive Elixir news to your inbox every two weeks.

Oops! Something went wrong while submitting the form.

Table of contents

Did you know that it's possible to set default value in Javascript object destructuring?

Let see how it works in action:

> { firstName = "John" } = {}
{}
> firstName
'John'

One thing to keep in mind is that it only works with undefined values. It won't work with null, false and 0 as these are normal values.

> { firstName = "John" } = { firstName: null }
{ firstName: null }
> { firstName = "John" } = { firstName: 0 }
{ firstName: 0 }
> {firstName = "John"} = { firstName: false }
{ firstName: false }

Related posts

Dive deeper into this topic with these related posts

No items found.

You might also like

Discover more content from this category

Multiple pattern-matching concatenations for the single string

Pattern-matching is one of the finest elixir-lang features. Whoever knows the power of this tool once, will want to use it forever.

How to group and count occurrences of values in Elixir's list

If you ever had to count occurrences of values in Elixir's list, this short post might be helpful for you!

How to create and use custom shell commands?

Each of us had a situation, where we had to invoke a few, same commands each time. Making it once is not that problematic, but when we are supposed to repeat given operations, it may be better just to create one function that will handle it all.