Skip to content

Instantly share code, notes, and snippets.

@dachi023
Last active February 18, 2016 03:37
Show Gist options
  • Save dachi023/3c998c709c3e41a580a8 to your computer and use it in GitHub Desktop.
Save dachi023/3c998c709c3e41a580a8 to your computer and use it in GitHub Desktop.
var _ = require('underscore');
var Backbone = require('backbone');
// 動作確認用にBackboneのModelを作ってみる
var MyModel = Backbone.Model.extend({
hello: function() {
console.log('hello!!');
}
});
var model = new MyModel();
model.hello(); // => コンソールに'hello!!'と表示される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment