Добавить Getter в объект JavaScript

Object.defineProperty(obj, 'valueName', {
	get: function () { return 5 }
});
MunchDuster