set.remove()是D3.js中的一個函數。如果給定數組包含指定值,則將其刪除並返回true。否則,此函數不執行任何操作並返回false。
用法:
d3.set([Array]).remove(element);
參數:此函數接受兩個參數,如下所示:
- Array:這是給定的元素數組(字符串)。
- element:這是將要搜索到給定數組中的值,如果存在該值,則將其刪除,然後返回true,否則不執行任何操作並返回false。
返回值:如果給定數組包含指定值,則返回true;否則,返回false。
注意:它不保存更新的數組。
下麵的程序演示了D3.js中的d3.set.remove()函數。範例1:
<!DOCTYPE html>
<html>
<head>
<title> d3.set.remove() 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.remove() function
A = d3.set(Array1).remove("a");
B = d3.set(Array2).remove("a");
C = d3.set(Array3).remove("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>
輸出:
true false true
範例2:
<!DOCTYPE html>
<html>
<head>
<title> d3.set.remove() Function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Calling the d3.set.remove() function
// with a array and a element as the parameter
A = d3.set([1, 2, 3, 3]).remove(4);
B = d3.set(["a"]).remove("a");
C = d3.set(["a", "b", "c", "a", "b", "c"]).remove("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>
輸出:
false true false
參考: https://devdocs.io/d3~5/d3-collection#set_remove
相關用法
- p5.js second()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js pow()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS url()用法及代碼示例
- CSS var()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.set.remove() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。