Recurring object properties - JS
If you ever get into trouble (and I'm sure you did) when trying to access a property of a JS object which does not exist twice, you will definitely get the red alert in the console.
Example:
const obj = {};
console.log(obj.foo.bar);
In order to fi...
electron.hashnode.dev1 min read
Hashnode
Official Company Account
Post delisted: Duplicate of electron.hashnode.dev/recurring-object-properties…