Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created January 22, 2013 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pparadis/4591383 to your computer and use it in GitHub Desktop.
Save pparadis/4591383 to your computer and use it in GitHub Desktop.
var x = function func(){
//rien, juste pour l'exemple
}
x.prototype.log = function() {
console.log("2");
}
var a = new x();
a.log(); //retourne "2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment