Skip to content

Instantly share code, notes, and snippets.

@nhunzaker
Created October 31, 2011 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhunzaker/1327396 to your computer and use it in GitHub Desktop.
Save nhunzaker/1327396 to your computer and use it in GitHub Desktop.
Article 1 - Collections
var Tweet = Backbone.Model;
var tweetsCollection = new Backbone.Collection({
model: Tweet
});
tweetsCollection.add({
from_user : "natehunzaker",
text : "Grow your JS a #backbone for great good!"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment