show/hide this revision's text 2 deleted 29 characters in body

I would clone an object like this:

Object.prototype.clone = function ()
{
    function F() {}
    F.prototype = this;
    return new F();
};


function User(_name, _age)
{
    this.name = _name;
    this.age = _age;
}


var thomas = new User("Thomas", "26");
alert(thomas.name);

var thomasClone = thomas.clone();
alert(thomasClone.name);

I would say that this is actually copying the User object, since the data in the thomas object is reflected in the thomasClone object.

show/hide this revision's text 1

I would clone an object like this:

Object.prototype.clone = function ()
{
    function F() {}
    F.prototype = this;
    return new F();
};


function User(_name, _age)
{
    this.name = _name;
    this.age = _age;
}


var thomas = new User("Thomas", "26");
alert(thomas.name);

var thomasClone = thomas.clone();
alert(thomasClone.name);

I would say that this is actually copying the User object, since the data in the thomas object is reflected in the thomasClone object.