Is memory consumption increased when copying/aliasing a JavaScript object?
For example, if I want to create a shortcut to an object:
// total memory 12k
// object.someobject 12k
var a = object.someobject;
Question 1: Does this use up 24k or just 12k of memory?
// and if I do
// object2 10k
var b = object2;
var c = $.extend(a,b);
Question 2: How much memory am I using now?
Question 3: If memory is increased, what is the best practice for creating shortcuts to objects?
-- EDIT --
Question 4: What happens if I delete or set 'a' to null?