JavaScript
1.==VS=== in JavaScript
2.JavaScript Prototypes
Creating a Prototype
function Person(first, last, age, eyecolor){
this.firstName = first;
this.lastName = last;
this.age = age;
this.eyecolor = eyecolor;
}Last updated