Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IEvangelist/51b34d9f4e14422099089914319b7182 to your computer and use it in GitHub Desktop.
Save IEvangelist/51b34d9f4e14422099089914319b7182 to your computer and use it in GitHub Desktop.
// Simple .ctor()
constructor(http: Http) { }
// Is equivalent to...
http: Http; // When the access modifier is omitted it's defaulted to public
constructor(http: Http) {
this.http = http;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment