Skip to content

Instantly share code, notes, and snippets.

@jakearchibald
Created October 7, 2009 19:58
Show Gist options
  • Save jakearchibald/204389 to your computer and use it in GitHub Desktop.
Save jakearchibald/204389 to your computer and use it in GitHub Desktop.
function User(name,id) {
this.name = name;
this.id = id;
}
User.prototype.show_user = function() {
alert("Nom : " + this.name + " id : " + this.id);
}
var test_object = new User("greg",2);
test_object.show_user();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment