當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Lodash _.sampleSize()用法及代碼示例


_.sampleSize()方法用於從給定數組中給出n個隨機元素的數組。

用法:

_.sampleSize(array, n)

參數:該方法接受上述和以下所述的兩個參數:

  • array:此參數保存樣本集合。
  • n:此參數保存要采樣的元素數。

返回值:此方法返回n個隨機元素的數組。

範例1:



const _ = require('lodash'); 
  
let x = [1, 2, 7, 10, 13, 15]; 
  
let result = _.sampleSize(x, 2); 
  
console.log(result);

這裏,const _ = require('lodash')用於將lodash庫導入文件中。

輸出:

[10, 13]

範例2:

const _ = require('lodash'); 
  
let x = ['mango', 'apple', 'banana', 'orange', 'grapes']; 
  
let result = _.sampleSize(x, 3); 
  
console.log(result);

輸出:

[ 'grapes', 'orange', 'banana' ]

範例2:

const _ = require('lodash'); 
  
let x = [1, 'a', {'name':'sampleSize'}, [1, 2, 3]]; 
  
let result = _.sampleSize(x, 3); 
  
console.log(result);

輸出:

[ { name:'sampleSize' }, 'a', 1 ]

注意:在正常的JavaScript中這將無法正常工作,因為它需要安裝庫lodash。

參考: https://lodash.com/docs/4.17.15#sampleSize




相關用法


注:本文由純淨天空篩選整理自iamsahil1910大神的英文原創作品 Lodash | _.sampleSize() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。