D3.js maxIndex() 方法
在d3.maxIndex()方法的帮助下,我们可以获得在数字、字符串或日期的数组中找到最大的值的索引。我们可以使用任何类型的数组,通过这种方法获得最大值的索引。
句法:
d3.maxIndex( iterable )
参数:此函数具有以下参数,如前所述,如下所述:
- 可迭代:插入任何类型的可迭代对象。
返回值:返回最大值的索引。
注意:要执行以下示例,您必须使用此命令提示符安装 d3 库,我们必须执行以下命令。
npm install d3
示例 1:在本示例中,我们可以看到,通过使用d3.maxIndex()方法,我们能够在该方法格式化的数字、字符串和日期数组中找到最大值的索引。
文件名:index.js
// Defining d3 contrib variable
var d3 = require('d3');
var arr = []
for(var i = 0; i < 5; i++) {
arr.push(i);
}
var index = d3.maxIndex(arr)
console.log(index)
输出:
4
示例 2:文件名:index.js
// Defining d3 contrib variable
var d3 = require('d3');
var index = d3.maxIndex([new Date(),
new Date("2020-09-01"), new Date("2020")])
console.log(index)
输出:
0
注意:上面的程序将使用以下命令编译和运行:
node index.js
参考: https://github.com/d3/d3-array/blob/master/README.md