如果創建的Map具有指定鍵字符串的條目,則D3.js中的map.has()函數用於返回true。 map.has()函數的值可以為null或未定義。
用法:
map.has(key)
參數:此函數接受指定為 key 字符串的單個參數 key 。
返回值:如果創建的映射具有指定鍵字符串的條目,則此函數返回true。該值可以為null或未定義。
以下程序說明了D3.js中的d3.map.has()函數:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>d3.map.has() function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Creating a map
var map = d3.map({"Ram": 5});
// Calling the map.has() function
A = map.has("Ram");
B = map.has("Geeks");
// Getting the true if the map
// has an entry for the specified key string
// else false
console.log(A);
console.log(B);
</script>
</body>
</html>
輸出:
true false
示例2:
<!DOCTYPE html>
<html>
<head>
<title>d3.map.has() function</title>
<script src='https://d3js.org/d3.v4.min.js'></script>
</head>
<body>
<script>
// Creating a map
var map1 = d3.map({"Ram": 5});
var map2 = d3.map({"Geeks": 10});
var map3 = d3.map({"Ram": 5}, {"Geeks": 10});
var map4 = d3.map();
// Calling the map.has() function
A = map1.has("Ram");
B = map2.has("Geeks");
C = map3.has("Geeks");
D = map3.has("Ram");
E = map4.has("Geeks");
// Getting the true if the map
// has an entry for the specified key string
// else false
console.log(A);
console.log(B);
console.log(C);
console.log(D);
console.log(E);
</script>
</body>
</html>
輸出:
true true false true false
參考: https://devdocs.io/d3~5/d3-collection#map_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.map.has() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。