Skip to content

Instantly share code, notes, and snippets.

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