Skip to content

Instantly share code, notes, and snippets.

@IEvangelist
Created September 2, 2016 01:34
Show Gist options
  • Save IEvangelist/d53238536d851d7f362d060de8e2d967 to your computer and use it in GitHub Desktop.
Save IEvangelist/d53238536d851d7f362d060de8e2d967 to your computer and use it in GitHub Desktop.
// Simple .ctor()
constructor(private http: Http) { }
// Is equivalent to...
private http: Http;
constructor(http: Http) {
this.http = http;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment