Skip to content

Instantly share code, notes, and snippets.

@vitalybe
Forked from drslump/gist:2e75bf744513bff97a64
Last active August 29, 2015 14:01
Show Gist options
  • Save vitalybe/bb4332c3661fc9741021 to your computer and use it in GitHub Desktop.
Save vitalybe/bb4332c3661fc9741021 to your computer and use it in GitHub Desktop.
{
// private field init
var a = 1;
// Initialization logic is here
if () {
...
}
// Private functions
function func2() {
};
// public field init
$scope.b = 1; // For controllers
this.c = 1; // For services
// Public functions
this.func = function () {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment