js 數組元素隨機排序

function randomsort(a, b) { return Math.random()>.5 ? -1 : 1; //用Math.random()函數生成0~1之間的隨機數與0.5比較,返回-1或1 } var arr = [1,2,3,4]; var arr2 = arr.sort(randomsort); alert(arr2);
相關文章
相關標籤/搜索