Skip to content

Instantly share code, notes, and snippets.

@edwardtanguay
Created June 3, 2014 19:03
Show Gist options
  • Save edwardtanguay/f93dbf79a9a718de9ba3 to your computer and use it in GitHub Desktop.
Save edwardtanguay/f93dbf79a9a718de9ba3 to your computer and use it in GitHub Desktop.
<script src="http://jashkenas.github.io/underscore/underscore-min.js"></script>
<script src="http://jashkenas.github.io/backbone/backbone-min.js"></script>
var TaskModel = Backbone.Model.extend ({
defaults : {
title : '',
description : '',
score : 55
},
initialize : function() {
console.log('in init');
}
});
var taskModel = new TaskModel();
console.log(taskModel.toJSON());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment