Skip to content

Instantly share code, notes, and snippets.

View zhouchangxun's full-sized avatar
🎯
Focusing

chance zhouchangxun

🎯
Focusing
View GitHub Profile
@zhouchangxun
zhouchangxun / day1.js
Created February 27, 2017 06:05 — forked from auser/day1.js
Day1 gist
angular.module('myApp.services', [])
.factory('UserFactory', function($http, $q) {
var service = {
// our factory definition
user: {},
setName: function(newName) {
service.user['name'] = newName;
},
setEmail: function(newEmail) {
service.user['email'] = newEmail;