var father = function(){ this.number = Math.random();}var father1 = new father;var son = function(){}son.prototype = father1;var sister = function(){}sister.prototype = father1;var son1 = new son;var sister1 = new sister;console.log(son1.number,sister1.number);