scrimba
Factory functions
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Factory functions
AboutCommentsNotes
Factory functions
Expand for more info
index.js
run
preview
console
function Person(name, age) {
this.name = name;
this.age = age;
}

Person.prototype.sayName = function() {
console.log(this.name)
}

const jeff = new Person('Jeff', 33);

jeff.sayName();
Console
/index.html
-9:31