I was wondering what the = +_ operator means in JavaScript. It looks like it does assignments.
Example:
hexbin.radius = function(_)
= +_ will cast _ into a number.
So
var _ = "1", r = +_; console.log(typeof r)
would output number.