📜  Collect.js shuffle() 方法

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

Collect.js shuffle() 方法

shuffle() 方法用于随机返回集合元素。

句法:

collect(array).shuffle()

参数: collect() 方法接受一个参数,该参数转换为集合,然后对其应用 shuffle() 方法。

返回值:此方法返回集合的随机元素。

下面的示例说明了 collect.js 中的 shuffle() 方法:

示例 1:

const collect = require('collect.js');
  
const collection = collect(['Geeks', 
    'GFG', 'GeeksforGeeks', 'Welcome']);
  
const shuffled = collection.shuffle();
  
console.log(shuffled.all());

输出:

[ 'Welcome', 'GFG', 'GeeksforGeeks', 'Geeks' ]

示例 2:

const collect = require('collect.js');
  
let obj = [
    {
        name: 'Rahul',
        marks: 88
    },
    {
        name: 'Aditya',
        marks: 78
    },
    {
        name: 'Abhishek',
        marks: 87
    }
];
  
const collection = collect(obj);
  
const shuffled = collection.shuffle();
  
console.log(shuffled.all());

输出:

[
  { name: 'Rahul', marks: 88 },
  { name: 'Abhishek', marks: 87 },
  { name: 'Aditya', marks: 78 }
]