In this example. I need to update friends list from object function.
var MyClass = function () {
    this.friends = [];
    this.runtime = {
        add: function (name) {
            this.friends.push(name);
        }
    }
};
MyClass.prototype.AddFriend = function (name) {
    this.runtime.add(name);
};
MyClass.prototype.GetFriends = function () {
    return this.friends;
};
How it's possible?
 
     
    