Created
October 11, 2016 09:44
-
-
Save imty42/52d396098b9bf78aec24f0ea9f895af3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const constructor = function(a, b) { | |
this.a = a; | |
this.b = b; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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