var obj = { msg: this.func(), func: function(){ return 'Hello'; } };
'use strict'; let obj = { get msg() { return 'Hello'; } }; alert(obj.msg);