📜  Lodash _.shuffle() 方法

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

Lodash _.shuffle() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。

_.shuffle()方法使用Fisher-Yates shuffle 算法的一个版本从给定集合中创建一个混洗值数组。

句法:

_.shuffle( collection )

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

  • 集合:此参数保存要洗牌的集合。

返回值:此方法用于返回新的打乱数组。

示例 1:

// Requiring the lodash library 
const _ = require("lodash"); 
       
// Original array 
var array = [2, 4, 6, 9, 10];
   
// Use of _.shuffle() method
let shuffled_array = _.shuffle(array);
  
// Printing the output 
console.log(shuffled_array);

输出:

[ 10, 9, 4, 2, 6 ]

示例 2:

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

输出:

[ 'sat', 'wed', 'fri', 'sun', 'thu', 'mon',  'tue']