Skip to content

Instantly share code, notes, and snippets.

View Cfeusier's full-sized avatar

Clark Feusier Cfeusier

View GitHub Profile
@Cfeusier
Cfeusier / zoo.js
Last active August 29, 2015 14:08 — forked from dbc-challenges/zoo.js
var Zoo = function(animals) {
this.animals = animals;
};
Zoo.prototype = {
bipeds: function() {
return this.legFilter(2);
},
quadrupeds: function() {
return this.legFilter(4);