I want to create an object property that re-calculates it's value each time it is called.
I took at stab at it:
var Foo = { Bar : (function() { return Date(); })() }
alert(Foo.Bar); // shows time at object literal Foo was init'd
// but need it to show time when it's called
It it even possible?