📜  D3.js | d3.pairs()函数

📅  最后修改于: 2022-05-13 01:56:44.775000             🧑  作者: Mango

D3.js | d3.pairs()函数

D3.js 中的d3.pairs()函数用于从给定的数组元素创建数组元素对。如果给定数组的元素少于两个,则返回空数组。

句法:

d3.pairs(Array)

参数:此函数接受一个参数数组,其元素将被配对。

返回值:它返回成对元素的数组。

下面的程序说明了 D3.js 中的d3.pairs()函数。

示例 1:


  

    
      Getting pair of two elements 
      from the elements of given array
  

  

    
  
    

  

输出:

[[10, 20], [20, 30], [30, 40]]
[[1, 2], [2, 3], [3, 4]]

示例 2:


  

    
      Getting pair of two elements
      from the elements of given array
  

  

    
  
    

  

输出:

[[A, B], [B, C]]
[a, b]