Initializing an object property if assigning to it fails
If you initialize a variable like let applications = {} and assign a property of applications with an array, like as in applications['foo'].push(1) it'll throw an error because foo is not yet a property of applications.
In Chrome it throws the follow...
javascript.co.in2 min read