When working with JSON structures in JavaScript, accessing nested properties and verifying whether a given value exists or not can be challenging. It often leads to a lot of conditional checks and multiple AND operators (&&) to prevent errors such as “TypeError: Cannot read property ‘********’ of undefined”. One way to address this is to use the && operator as a fallback option, which assigns a null value to the variable if the object property is null or undefined.
So, in JavaScript, we use the && operator as a fallback option.
The coolest thing about this operator is that the second expression will never be executed if the first expression is false. For example, to check if a car object is defined before using it, we can use the following code:
const candidate = { company: “Mindbowser”} const company = candidate && candidate.company;
Even if the car is null, we don’t get errors and the color is assigned a null value.
However, when dealing with complex object structures with multiple nested properties, such as:
const colorVariable= { } const colorName =colorVariable && colorVariable.color && colorVariable.color.name;
In other programming languages, we use the && operator to determine true or false,since it’s a logical operator. But in JavaScript, it allows us to do some really amazing things.
In Javascript, everything is treated as an object and an object can have a very different nested structure of objects.
Let’s take one more example
Objects can have different set of properties during runtime:
//1st const obj = { user: { //.. user2: { //.. value: 'Some value' } } }; //2nd const obj ={ user: { //nothing here } };
Therefore, we have to manually check the property’s existence:
if(obj && obj.user != null && obj.user.user2 != null){ let result = obj.user.user2.value) }
So, we can see that there’s a lot of overlapping code in the above example.The code currently includes multiple conditional statements to perform checks on each field of a JSON object.Thats where the optional chaining feature of JavaScript comes into the picture.
Manually checking each property’s existence becomes tedious. That’s where the optional chaining feature of JavaScript, introduced in ES2020, comes in.
Optional chaining is a feature of ES2020 that allows us to check if an object exists before trying to access its properties.If any of the values after the ‘?’ operator are null or undefined, the statement will return null or undefined without throwing an error.
“?.” is used as an optional chaining operator.
syntax
obj?.prop obj?.[expr] arr?.[index] func?.(args)
Let’s see how to handle multiple ways of accessing the properties of an object
let city = users && users.address && users.address.city
We can rewrite the above line as
let city = users?.address?.city
So,the basic rule is if any of the values after a ‘?’ are nullish or undefined, then the statement will return either null or undefined without throwing an error.
An alternative for not repeatedly adding the ‘?’ operator at every level provided we are confident that every user has an address but uncertain if the users exists is
let city = users?.address.city
We need to check the existence of objects or arrays prior in order to access its properties and if while iterating over an array too.
e.g:
const data= [ ]; data.map( ( item, index )=> { return item; });
What if the data variable is null or undefined?
=> We would get an error i.e Uncaught TypeError: Cannot read properties of undefined (reading ‘map’)
The quick solution to this is to check whether our data exists and this can be determined by checking the array.length.
const data = ["user"]; if(data && data.length > 0){ data.map(item => item) }
Or,
const data = [“user”]; data && data.length > 0 && data.map( item => item )
We can improve this piece of code with a simple question mark
data?.map( item => item)
Let’s take one more example
let company = { name: "Mindbowser", revenue: 2000, users: [ { name: "Deepak", email: "deepak@mindbowser.com" }, { name: "Devashree", email: "devashree@mindbowser.com" }, ], getUserName: () => { return company.users.map(user => user.name); }, }; // Call the getUserName method and store the returned value in a variable let userNames = company.getUserName();
In order to access the values of this object and the object can be undefined or null
const companyName = company !== undefined && company !== null ? company.name : undefined;
Using optional chaining we can
const companyName = company?.name
When we use optional chaining with function calls and the method is not found, the expression evaluates to undefined instead of throwing an exception, which can help avoid runtime errors.
company.getUserNames?.() >undefined
Using optional chaining makes the code more organised and readable. It enhances code by handling null or undefined values effectively. It simplifies nested property access and method calls, reducing the risk of errors and improving code readability. By utilising the optional chaining operator, developers can create more resilient and concise code, leading to better-quality JavaScript applications. It also allows us to handle multiple ways of accessing the properties of an object without manually checking each property’s existence.
How to Effectively Hire and Manage a Remote Team of Developers.
Download nowThe Mindbowser team's professionalism consistently impressed me. Their commitment to quality shone through in every aspect of the project. They truly went the extra mile, ensuring they understood our needs perfectly and were always willing to invest the time to...
CTO, New Day Therapeutics
I collaborated with Mindbowser for several years on a complex SaaS platform project. They took over a partially completed project and successfully transformed it into a fully functional and robust platform. Throughout the entire process, the quality of their work...
President, E.B. Carlson
Mindbowser and team are professional, talented and very responsive. They got us through a challenging situation with our IOT product successfully. They will be our go to dev team going forward.
Founder, Cascada
Amazing team to work with. Very responsive and very skilled in both front and backend engineering. Looking forward to our next project together.
Co-Founder, Emerge
The team is great to work with. Very professional, on task, and efficient.
Founder, PeriopMD
I can not express enough how pleased we are with the whole team. From the first call and meeting, they took our vision and ran with it. Communication was easy and everyone was flexible to our schedule. I’m excited to...
Founder, Seeke
Mindbowser has truly been foundational in my journey from concept to design and onto that final launch phase.
CEO, KickSnap
We had very close go live timeline and Mindbowser team got us live a month before.
CEO, BuyNow WorldWide
If you want a team of great developers, I recommend them for the next project.
Founder, Teach Reach
Mindbowser built both iOS and Android apps for Mindworks, that have stood the test of time. 5 years later they still function quite beautifully. Their team always met their objectives and I'm very happy with the end result. Thank you!
Founder, Mindworks
Mindbowser has delivered a much better quality product than our previous tech vendors. Our product is stable and passed Well Architected Framework Review from AWS.
CEO, PurpleAnt
I am happy to share that we got USD 10k in cloud credits courtesy of our friends at Mindbowser. Thank you Pravin and Ayush, this means a lot to us.
CTO, Shortlist
Mindbowser is one of the reasons that our app is successful. These guys have been a great team.
Founder & CEO, MangoMirror
Kudos for all your hard work and diligence on the Telehealth platform project. You made it possible.
CEO, ThriveHealth
Mindbowser helped us build an awesome iOS app to bring balance to people’s lives.
CEO, SMILINGMIND
They were a very responsive team! Extremely easy to communicate and work with!
Founder & CEO, TotTech
We’ve had very little-to-no hiccups at all—it’s been a really pleasurable experience.
Co-Founder, TEAM8s
Mindbowser was very helpful with explaining the development process and started quickly on the project.
Executive Director of Product Development, Innovation Lab
The greatest benefit we got from Mindbowser is the expertise. Their team has developed apps in all different industries with all types of social proofs.
Co-Founder, Vesica
Mindbowser is professional, efficient and thorough.
Consultant, XPRIZE
Very committed, they create beautiful apps and are very benevolent. They have brilliant Ideas.
Founder, S.T.A.R.S of Wellness
Mindbowser was great; they listened to us a lot and helped us hone in on the actual idea of the app. They had put together fantastic wireframes for us.
Co-Founder, Flat Earth
Ayush was responsive and paired me with the best team member possible, to complete my complex vision and project. Could not be happier.
Founder, Child Life On Call
The team from Mindbowser stayed on task, asked the right questions, and completed the required tasks in a timely fashion! Strong work team!
CEO, SDOH2Health LLC
Mindbowser was easy to work with and hit the ground running, immediately feeling like part of our team.
CEO, Stealth Startup
Mindbowser was an excellent partner in developing my fitness app. They were patient, attentive, & understood my business needs. The end product exceeded my expectations. Thrilled to share it globally.
Owner, Phalanx
Mindbowser's expertise in tech, process & mobile development made them our choice for our app. The team was dedicated to the process & delivered high-quality features on time. They also gave valuable industry advice. Highly recommend them for app development...
Co-Founder, Fox&Fork