codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Member-only story

How to handle deeply-nested nullable fields in JavaScript and TypeScript

Nadeesha Cabral
codeburst
Published in
4 min readSep 15, 2019

Photo by Philipp Berndt on Unsplash

Nullability is a hard problem. This is especially true for JavaScript/TypeScript. Front-ends and Web Servers (which makes up most of JavaScript usage) tend to work with a lot of JSON. And although it’s relatively easy to JSON.parse(myJSONString), it's a whole different game when you want to safely traverse the resulting JavaScript object.

And since TypeScript offers type-safely to those who traverse these objects properly, we have to be mindful of preserving the type guarantees and not circumvent the type system needlessly.

Let’s start without deeply nested nullable interface:

Since the address could be null:

Option 0: A naive approach to traversing

If you use && to "chain" your accessors, You can get around this problem a little bit:

We can quickly see how this approach makes things very hard to “grok” in your head. If you need to extend this beyond a couple of levels, you end up with:

Option 1: Enter idx

I have found idx to be a safe method of accessing these nested nullable values. A naive implementation of this would be:

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

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Nadeesha Cabral

Hi, I’m Nadeesha. I work with computers a lot. I write about software development, and a few other things.

Responses (6)