Skip to content

Instantly share code, notes, and snippets.

@imty42
Created October 11, 2016 09:44
Show Gist options
  • Save imty42/52d396098b9bf78aec24f0ea9f895af3 to your computer and use it in GitHub Desktop.
Save imty42/52d396098b9bf78aec24f0ea9f895af3 to your computer and use it in GitHub Desktop.
const constructor = function(a, b) {
this.a = a;
this.b = b;
};
const constructor = function(a, b, c, d) {
this.a = a;
this.b = b;
this.c = c;
this.d = d;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment