Skip to content

Instantly share code, notes, and snippets.

@squirly
squirly / 1Factory.js
Last active August 29, 2015 14:19
Van AngularJs April Presentation Demos
"use strict";
angular.module('myModule', []).
factory('User', [function () {
function User (data) {
angular.extend(this, data);
}
User.prototype.getFullName = function () {