Skip to content

Instantly share code, notes, and snippets.

@namusyaka
Created November 18, 2011 13:52
Show Gist options
  • Save namusyaka/1376506 to your computer and use it in GitHub Desktop.
Save namusyaka/1376506 to your computer and use it in GitHub Desktop.
javascript constructor
var a = function () {};
alert(a === a.prototype.constructor); //true
var b = new a();
alert(b.constructor === a); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment