【Underscore.js】配列の要素をシャッフルする。

めも。

var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];

_.shuffle(arr);

=> [4, 7, 1, 6, 3, 8, 5, 2, 9]