当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Collect.js shuffle()用法及代码示例


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

用法:

collect(array).shuffle()

参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用shuffle()方法。

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

下面的示例说明了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 }
]




相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js shuffle() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。