Skip to content

Instantly share code, notes, and snippets.

@dameleon
Created September 4, 2014 14:23
Show Gist options
  • Save dameleon/dd75190a7c939ba31706 to your computer and use it in GitHub Desktop.
Save dameleon/dd75190a7c939ba31706 to your computer and use it in GitHub Desktop.
var view = new Backbone.View.extend({
str: 'hoge',
arr: [],
init: function() {}
});
// 全部 __proto__ に生える
view.__proto__.str; // -> hoge
view.__proto__.arr; // -> []
view.__proto__.init; // -> fn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment