То есть примерно так:
function Test(){ this.isConstructor = true; } Test.prototype.value = "custom value"; console.log(new Test()) //should return "custom value"
function Test(){ this.isConstructor = true; } function Custom() { Test.call(this); this.custom = 'custom value'; } console.log(new Custom())