D3:对象调用前的+运算符

时间:2014-11-15 21:23:50

标签: javascript d3.js

我不清楚+运算符在这个特定的上下文中做了什么,或者通常在javascript中它在下面的上下文中做了什么。投影功能内部。

 function agg_year(leaves) {
            var total = d3.sum(leaves, function(d) {
                return d['attendance'];
            });

            var coords = leaves.map(function(d) {
                return projection([+d.long, +d.lat]);
            });

            var center_x = d3.mean(coords, function(d) {
                return d[0];
            });

            var center_y = d3.mean(coords, function(d) {
                return d[1];
            });

            return {
              'attendance' : total,
              'x' : center_x,
              'y' : center_y
            };
        }

1 个答案:

答案 0 :(得分:5)

它在javascript中强制一个数字的值。因此,如果数组中有两个字符串值:

var latitude = '10'; //this is a string
var longitude = '20'; //this is a string

这会创建一个字符串数组,对吗?

var coordinates = [latitude, longitude]; // -> two strings, ['10', '20'];

现在这会创建一个数字数组(+用于将值强制转换为数字):

var coordinates = [+latitude, +longitude]; // -> two numbers,  [10, 20];

以下更多示例:

var a = null;
typeof a; //object.
typeof +a; //number
+a; //0

var b = '5';
typeof b; //string
typeof +b; //number
+b; //5