服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.shuffle(collection)

使用Fisher-Yates shuffle版本创建一个混合值数组。

初始

0.1.0

参数
  1. collection (Array | Object):要刷新的集合。
返回

(数组):返回新的混洗数组。

_.shuffle([1, 2, 3, 4]);
// => [4, 1, 3, 2]