Skip to content

Instantly share code, notes, and snippets.

@brendanashworth
Last active August 29, 2015 14:07
Show Gist options
  • Save brendanashworth/67d3f0325e47f5009396 to your computer and use it in GitHub Desktop.
Save brendanashworth/67d3f0325e47f5009396 to your computer and use it in GitHub Desktop.
// This is the constructor
function Client(name, age) {
this.name = name;
this.age = age;
}
Client.prototype.contact = function() {
console.log("Now contacting " + this.name + "...");
}
var myClient = new Client('Test Client', 21);
myClient.contact();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment