Edit in JSFiddle

var myCollection = new Backbone.Collection();

console.log('var myCollection = new Backbone.Collection();');

console.log('myCollection Instance Properties:');
console.log(_.keys(myCollection));

console.log('myCollection prototype Properties & Methods:');
console.log(_.keys(Object.getPrototypeOf(myCollection)));