當且僅當給定集合包含指定值的條目時,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
相關用法
- p5.js cos()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js tan()用法及代碼示例
- PHP pos()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js sin()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP each()用法及代碼示例
- PHP each()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.set.has() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。