How can I get the object length ?
In console my object looks like this:
Object { 2: true, 3: true, 4: true }
.length w
.length
Combining some of these answers into
app.filter('numkeys', function() { return function(object) { return Object.keys(object).length; } });
seems to work
lots of furry animals