获得从集合中随机获得 N 个元素 Gets n random elements from collection.
N
n
collection
要取样的集合
要取得的元素个数
返回随机元素
_.sampleSize([1, 2, 3], 2); // => [3, 1] _.sampleSize([1, 2, 3], 4); // => [2, 3, 1]