Just trying to understand why every JavaScript object has a constructor property.
Is there any use of constructor property because object is already created?
var MyFunc = function (name){this.name=name}
var instance = new MyFunc("myclass");
now instance has a constructor property which has reference to MyFunc itself. What is use of having constructor property on instance?