Recurring object properties - JS
If you ever get into troubles (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 f...
electron.hashnode.dev1 min read