get()函數用於返回特定鍵上存在的值。在JavaScript中,首先將數組轉換為集合,然後將函數應用於集合。
用法:
data.get('key')
參數:該函數接受如上所述和以下描述的單個參數:
- Key:此參數保存定義該鍵值的鍵名。
返回值:返回提到的鍵的值。
下麵的示例說明了collect.js中的get()函數:示例1:在此示例中,我們進行一個收集,然後使用get()函數,它使用鍵返回值。
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
firstname:'Jhon',
lastname:'Carter',
});
console.log(collection.get('firstname'));
輸出:
Jhon
範例2:如果鍵值不存在,則它將返回null。
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
firstname:'Jhon',
lastname:'Carter',
});
console.log(collection.get('middlename'));
輸出:
null
範例3:
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect(['a', 'b', 'c']);
console.log(collection.get(2));
輸出:
c
參考: https://collect.js.org/api/get.html
相關用法
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- p5.js mag()用法及代碼示例
- PHP ord()用法及代碼示例
- CSS url()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP Ds\Set add()用法及代碼示例
- p5.js nf()用法及代碼示例
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP each()用法及代碼示例
- PHP Ds\Set contains()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Collect.js | get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。