【AngularJS】Serviceの書き方メモ。

app.service('user', [function () {
    this.value = null;
    
    this.set = function(value) {
        this.value = value;
    };
    this.get = function() {
        return this.value;
    };
}]);