Я просто запутался...
Вот это:
var Instance = function() {
if (this._instance) return this._instance;
return this._instance = new this;
};
var Apple = function(){
this.color = "green";
};
Apple.Instance = Instance;
Apple.Instance.color
Должно же отдать
green, а не
undefined ??!