Take this example:
 var personPrototype = { 
 firstName: '',
 lastName: '',
 getFullname: function() { 
    return this.firstName + ' : ' + this.lastName; 
  } 
} 
Person = {
};
function newPerson(firstName, lastName) { 
    var Person = function(firstName, lastName) { 
      this.firstName = firstName; 
      this.lastName = lastName; 
    }
    Person.prototype = personPrototype;
    return new Person(firstName, lastName);
}
var p1 = newPerson('someone', 'else');
var p2 = newPerson('john', 'doe');
console.log(p1.getFullname());
console.log(p2.getFullname());
Moving the firstName and lastName from the personPrototype to the Person yields the same results. Does that mean that there is no difference between the two, or am I overlooking something?
 
    