Edited: Say i create a constructor to create my own user-defined objects:
var Person = Person(age) { this._age = living; };
and i find during runtime that i need to add to the objects that are created by this constructor another property,so i use this to add the property the prototype.
Person.prototype.alive;
now my only constructor gets only 1 val, is it possible to send that same constructor another val? say something like var newPerson = Person(20,''yes);