jQuery provides an extend method that enables you to create both shallow and deep copies of an object.

// Shallow copy
var newObj = jQuery.extend({}, oldObj);

// Deep copy
var newObj = jQuery.extend(true, {}, oldObj);

A vanilla JavaScript hack that doesn't require much code involves using the JSON library. You can stringify an object and then immediately parse it like this:

var me = {
    name: 'Tyler',
    age: 29
};

var me2 = JSON.parse(JSON.stringify(me));
me2.name = 'Joseph';

console.log(me);
console.log(me2);

This is obviously not the intent of this library, but it works apart from copying functions.

A tabletop arcade cabinet full of Pi!
Ash Ash (362)
0

The Picade from Pimoroni brings new meaning to tabletop gaming. This tiny box is built for DIY gamers with a touch of class.