Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created October 2, 2014 07:18
Show Gist options
  • Save xcarpentier/2912db44a3abe5dd61c2 to your computer and use it in GitHub Desktop.
Save xcarpentier/2912db44a3abe5dd61c2 to your computer and use it in GitHub Desktop.
/* A éviter */
function Customer ($scope) {
$scope.name = {};
$scope.sendMessage = function () { };
}
/* Recommandé, mais il y a encore mieux, à suivre ... */
function Customer () {
this.name = {};
this.sendMessage = function () { };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment