Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
tldr; safely access nested objects in JavaScript in a super cool way.
JavaScript is amazing, we all know that already. But a few things in JavaScript are really weird and they make us scratch our heads a lot. One of those things is the confrontation with this error when you try to access a nested object,
Cannot read property âfooâ of undefined
Most of the times when weâre working with JavaScript, weâll be dealing with nested objects and often weâll be needing to access the innermost nested values safely.
Letâs take this nested object as an example.
const user = { id: 101, email: 'jack@dev.com', personalInfo: { name: 'Jack', address: { line1: 'westwish st', line2: 'washmasher', city: 'wallas', state: 'WX' } }}
To access the name of the our user, weâll write
const name = user.personalInfo.name;const userCity = user.personalInfo.address.city;
This is easy and straight-forward.
But, for some reason, if our userâs personal info is not available, the object structure will be like this,
const user = { id: 101, email: 'jack@dev.com'}
Now if you try you access the name, youâll be thrown Cannot read property ânameâ of undefined.
const name = user.personalInfo.name; // Cannot read property 'name' of undefined
This is because weâre trying to access name key from an object that does not exist.
The usual way how most devs deal with this scenario is,
const name = user && user.personalInfo ? user.personalInfo.name : null;// undefined error will NOT be thrown as we check for existence before access
This is okay if your nested structure is simple, but if you have your data nested 5 or 6 levels deep, then your code will look really messy like this,
let city;if ( data && data.user && data.user.personalInfo && data.user.personalInfo.addressDetails && data.user.personalInfo.addressDetails.primaryAddress ) { city = data.user.personalInfo.addressDetails.primaryAddress;}
There are a few tricks to deal with this messy object structures.
Oliver Steeleâs Nested Object Access Pattern
This is my personal favorite as it makes the code look clean and simple. I picked this style from stackoverflow a while back and it is pretty catchy once you understand how it works.
const name = ((user || {}).personalInfo || {}).name;
With this notation, youâll never run into Cannot read property ânameâ of undefined. You basically check if user exists, if not, you create an empty object on the fly. This way, the next level key will always be accessed from an object that exists or an empty object, but never from undefined.
Unfortunately, you cannot access nested arrays with this trick
Access Nested Objects Using Array Reduce
Array reduce method is very powerful and it can be used to safely access nested objects.
const getNestedObject = (nestedObj, pathArr) => { return pathArr.reduce((obj, key) => (obj && obj[key] !== 'undefined') ? obj[key] : null, nestedObj);}
// pass in your object structure as array elementsconst name = getNestedObject(user, ['personalInfo', 'name']);
// to access nested array, just pass in array index as an element the path array.const city = getNestedObject(user, ['personalInfo', 'addresses', 0, 'city']);// this will return the city from the first address item.
Typy
If you think the above methods are a lilâ too mainstream, then you should try Typy library that Iâve written. In addition to safely accessing nested objects, it does many more awesome things. đ
It is available as an npm packageâââTypy
If you use Typy, your code will look like this,
import t from 'typy';
const name = t(user, 'personalInfo.name').safeObject;const city = t(user, 'personalInfo.addresses[0].city').safeObject;// address is an array
There a few other libraries like Lodash and Ramda that can do this. But in light-weight front-end projects, especially if youâre going to need only one or two methods from those libs, itâs a good idea to opt for an alternative light-weight lib, or better, write your own.
Happy âsafely accessing nested objects in JavaScriptâ! đ„
Accessing Nested Objects in JavaScript was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.