Skip to content

Instantly share code, notes, and snippets.

@verekia
Created January 20, 2016 19:43
Show Gist options
  • Save verekia/e6cd0a1054ce782eac0f to your computer and use it in GitHub Desktop.
Save verekia/e6cd0a1054ce782eac0f to your computer and use it in GitHub Desktop.
require(['Models/User'], function(User){
var users = [new User('Barney'),
new User('Cartman'),
new User('Sheldon')];
for (var i = 0, len = users.length; i < len; i++){
console.log(users[i].name);
}
localStorage.users = JSON.stringify(users);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment