Well, the only thing that I can tell you about are getter:
var foo = {_x000D_
a: 5,_x000D_
b: 6,_x000D_
get c() {_x000D_
return this.a + this.b;_x000D_
}_x000D_
}_x000D_
_x000D_
console.log(foo.c) // 11
_x000D_
This is a syntactic extension introduced by the ECMAScript 5th Edition Specification, the syntax is supported by most modern browsers (including IE9).