js基礎 陣列函式庫

2021-08-20 01:31:54 字數 1253 閱讀 2437

/**

* 陣列函式庫

*/var aarr = [1, 2, 3, 3, 2, 1, 4, 5, 6, 6, 5, 4];

function arrtools()

arrtools.prototype = ;

var arr2 = ;

for (var key in arr)

}return arr2;

},//2、陣列亂序

randomarr: function (arr) );

},//3、獲取最大值

// math.max()方法,支援傳遞多個引數,比如:math.max(1, 4, 2, 3, 7, 5, 6)

// 但是它不支援直接傳遞乙個陣列作為引數,比如:math.max(new array(1, 4, 2, 3, 7, 5, 6)) 。

// 這裡,只要我們有方法把陣列,乙個乙個拆分開來,傳遞到math.max()方法中,就實現了傳遞陣列的方法。

getarrmax: function (arr) ,

//4、獲取最小值

getarrmin: function (arr) ,

//5、隨機獲取陣列元素

getrandomitem: function (arr) ,

//6、陣列求和平均值

getarrsum:function(arr,isflag));

if(isflag)else

},// 7、將陣列的第n個元素放到開頭

pushfirst:function(arr,n),

//8、按age進行排序

sortage:function(arr));

}}console.log(arrtools.prototype.removerepeatarr(aarr));

console.log(arrtools.prototype.randomarr(arr));

console.log(arrtools.prototype.getarrmax(arr));

console.log(arrtools.prototype.getarrmin(arr));

console.log(arrtools.prototype.getrandomitem(arr));

console.log(arrtools.prototype.getarrsum(arr,1));

console.log(arrtools.prototype.pushfirst(arr,2));

php陣列函式庫

提取陣列中key在key arr中的元素 param array source arr 原陣列 param string key arr key作為值組成的陣列 return mode 陣列 function array extract key array source arr,key arr if...

jQuery函式庫基礎

src js jquery 1.12.4.min.js script 寫自己的 呼叫jquery函式 script 將獲取元素的語句寫到頁面頭部,會因為元素還沒有載入而出錯,jquery提供了ready方法解決這個問題,它的速度比原生的 window.onload 更快。src jquery jqu...

xe utils基礎函式庫

xe utils函式庫api文件 安裝 npm install xe utils 引入方式1 const xeutils require xe utils 引入方式2 引入方式3 import xeuils from xe utils 注入到根實列中 vue.prototype.utils xeui...