📜  Lodash _.sample() 方法

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

Lodash _.sample() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。
_.sample() 方法将从集合中提供一个随机元素。

句法:

_.sample(collection)

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

  • collection:此参数保存要采样的集合。

返回值:此方法用于返回随机元素。

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

javascript
// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var array1 = ([ 3, 6, 9, 12 ]);
   
// Use of _.sample() method
let gfg = _.sample(array1);
  
// Printing original Array 
console.log("original array1: ", array1)
  
// Printing the output 
console.log(gfg);


javascript
// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var array1 = ([ 'mon', 'tue', 'wed',
     'thu', 'fri', 'sat', 'sun']);
   
// Use of _.sample() method
let gfg = _.sample(array1);
  
// Printing original Array 
console.log("original array1: ", array1)
  
// Printing the output 
console.log(gfg);


输出:

original array1: [ 3, 6, 9, 12 ]
12

示例 2:

javascript

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var array1 = ([ 'mon', 'tue', 'wed',
     'thu', 'fri', 'sat', 'sun']);
   
// Use of _.sample() method
let gfg = _.sample(array1);
  
// Printing original Array 
console.log("original array1: ", array1)
  
// Printing the output 
console.log(gfg);

输出:

original array1: [ 'mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
mon

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