If you have a constructor function like
var SomeClass = function(){
this.a= "";
this.b= "";
}
then let's say you add another method using prototype
SomeClass.prototype.fn = function fn(){
console.log(this.a);
};
Why use prototype
where you can just add this method to your constructor
function?