Skip to content

Comment on iOS 8 length bug breaks jQuery and Underscore object iterationparent

Comments

Why not instead do

    _.map(_.values(thingsGroupedById), function(thing) {
        // operate on thing
    }
Then there's no need to do the property access yourself.

Chaining makes this even nicer:

    _(thingsGroupedById).values().map(function(thing) {

    }

Depends on what //... is. You might need the key for something, and you can get the value from the key but not vice versa.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.