📜  Lodash _.size() 方法

📅  最后修改于: 2022-05-13 01:56:38.399000             🧑  作者: Mango

Lodash _.size() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。
_.size() 方法通过返回数组的长度来获取集合的大小,例如值或对象自己的可枚举字符串键控属性的数量。

句法:

_.size(collection)

参数:此方法接受上面提到的单个参数,如下所述:

  • 集合:此参数保存要检查的集合。

返回值:此方法返回集合大小。

示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。

javascript
// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array and use _.size() method
var gfg = _.size([12, 14, 36, 29, 10]);
  
// Printing the output 
console.log(gfg);


javascript
// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array and use _.size() method
var gfg = _.size({ 'p': 1, 'q': 2, 'r': 5});
  
// Printing the output 
console.log(gfg);


javascript
// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array and use _.size() method
var gfg1 = _.size('geeksforgeeks');
var gfg2 = _.size('computer science');
  
// Printing the output 
console.log(gfg1, gfg2);


输出:

5

示例 2:

javascript

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array and use _.size() method
var gfg = _.size({ 'p': 1, 'q': 2, 'r': 5});
  
// Printing the output 
console.log(gfg);

输出:

3

示例 3:

javascript

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array and use _.size() method
var gfg1 = _.size('geeksforgeeks');
var gfg2 = _.size('computer science');
  
// Printing the output 
console.log(gfg1, gfg2);

输出:

13, 16

注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。