Say I have an object such as this:
var time = { \'second\': 1000, \'minute\': 1000 * 60, \'hour\' : 1000 * 60 * 60, \'day\' : 1000 * 60 *
You can't do this as the object does not exist yet while it's parsed.
The only way to avoid this is creating an object and then adding the keys one by one - so you already have an object which has the properties you want to re-use.