
parseFloat(o.get('bar1_value'),10) in totals = _.reduce(findObjs({ pageid: page, type: 'graphic', isdrawing: false, layer: 'objects' }),function(m,o){ m.bar1+=parseFloat(o.get('bar1_value'),10) || 0; m.bar2+=parseFloat(o.get('bar2_value'),10) || 0; m.bar3+=parseFloat(o.get('bar3_value'),10) || 0; return m; },{ bar1: 0, bar2: 0, bar3: 0 }); what's that second argument for parseFloat? The maximum number of characters in the string that are parsed?