Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created October 3, 2014 20:51
Show Gist options
  • Save xcarpentier/8778e91f0af9db745f5b to your computer and use it in GitHub Desktop.
Save xcarpentier/8778e91f0af9db745f5b to your computer and use it in GitHub Desktop.
/* A éviter */
function Customer () {
this.name = {};
this.sendMessage = function () { };
}
/* Recommandé */
function Customer () {
var vm = this;
vm.name = {};
vm.sendMessage = function () { };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment