数组随机选取5条数据

//随机排序 选取前5条
数组.sort(function(){return Math.random()>0.5?-1:1;})  
原文地址:https://www.cnblogs.com/wanghk/p/3418162.html