Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlina Antemir
10,185 PointsWhat if I don't want the instance to have all properties of the prototype?
Hi,
I was just wondering how can I create an instance of an object but without having all properties of the prototype:
function Person (name, job) { this.name = name; this.job = job; }
var Person2 = new Person ("Alina");
console // Person {name: "Alina", job: undefined}
I don't want the job property.
Thanks, Alina
2 Answers
Steven Parker
231,248 PointsYou need a different constructor.
By definition, objects of the same type must have the same properties. So in this case, you need a different constructor for your new object type that only establishes the properties you want to have.
Alina Antemir
10,185 PointsI see, thank you.