Skip to content

Instantly share code, notes, and snippets.

View bentesha's full-sized avatar

Benedict Tesha bentesha

View GitHub Profile
function Robot(name, job) {
this.name = name;
this.job = job;
}
Robot.prototype.introduce = function() {
console.log("Hi! I'm " + this.name + ". My job is " + this.job + ".");
};
var bender = new Robot("Bender", "bending");