当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.set.has()用法及代码示例


当且仅当给定集合包含指定值的条目时,D3.js中的set.has()函数用于返回true。

用法:

d3.set([Array]).has(element);

参数:该函数接受上述和以下描述的两个参数:


  • Array:它以字符串形式存储数组元素。
  • element:这是将要搜索到给定数组中的值,如果存在,则返回true,否则返回false。

返回值:如果给定数组包含指定值,则返回true,否则返回false。

以下程序说明了D3.js中的d3.set.has()函数:

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        d3.set.has() function
    </title> 
      
    <script src = "https://d3js.org/d3.v4.min.js"></script> 
</head> 
  
<body> 
    <script> 
      
        // Initialising an array 
        Array1 = ["a", "a", "b", "c"]; 
        Array2 = ["c", "c", "c"]; 
        Array3 = ["Geeks", "gfg", "GeeksforGeeks"]; 
          
        // Calling the d3.set.has() function 
        A = d3.set(Array1).has("a"); 
        B = d3.set(Array2).has("a"); 
        C = d3.set(Array3).has("Geeks"); 
          
        // Getting the value true if the specified element 
        // is present in the array otherwise false 
        console.log(A); 
        console.log(B); 
        console.log(C); 
    </script> 
</body> 
  
</html>

输出:

true
false
true

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        d3.set.has() function
    </title> 
      
    <script src = "https://d3js.org/d3.v4.min.js"></script> 
</head> 
  
<body> 
    <script> 
      
        // Calling the d3.set.has() function 
        // with a array and a element as the parameter  
        A = d3.set([1, 2, 3, 3]).has(4); 
        B = d3.set(["a"]).has("a"); 
        C = d3.set(["a", "b", "c", "a", "b", "c"]).has("d"); 
            
        // Getting the value true if the specified element 
        // is present in the array otherwise false 
        console.log(A); 
        console.log(B); 
        console.log(C); 
    </script> 
</body> 
  
</html>

输出:

false
true
false

参考: https://devdocs.io/d3~5/d3-collection#set_has



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.set.has() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。