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.
