I'm a beginner in Javascript, and having hard times trying to understand the relationship between constructor and prototype properties.
I know that Prototype object has a constructor property that points to constructor function. And the constructor function has a prototype property that points back to the prototype object.
Here's a code i'm trying to understand with (my questions are commented in the code) :
function Car(){};
var myCar = new Car();
console.log(Object.getPrototypeOf(myCar)); //why this prints "Car" Object ? isn't it the constructor not the prototype object ? why the prototype object is not printed ?
var Vehicle = {
getName : function(){
return "hello";
}
};
Car.prototype = Vehicle ; //I'm trying to change the prototype property in the constructor to "Vehicle" Object is that done right ?
console.log(Object.getPrototypeOf(myCar).getName()); //Why am i getting getName() function does not exist ?

constructorproperty is pretty much useless. It has no practical purpose and can be overwritten by script so is unreliable. – Tim Down Jul 13 '12 at 23:48