Optional Chaining in JavaScript
Optional Chaining in JavaScript is used to return undefined for accessing an object property that doesn't exist and whose parent property is nullish (null or undefined).
If you are unaware that property exists or not and you want to avoid the error t...
murtuza.hashnode.dev3 min read