您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關JS中使用數組的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
具體如下:
//數組的高級使用 var array = [10,12,20,30]; for(var index in array){ console.log(array[index]); } //length 數組長度 for(var i = 0; i < array.length; i++){ console.log(array[i]); } //數組添加新數據 array.push(1000); array.push(2000); array.push("hello world"); array.push({key:"jadeshu"}); console.log(array); //[10, 12, 20, 30, 1000, 2000, "hello world", {key:"jadeshu"}] //數組刪除最后一個數據 array.pop(); console.log(array); // [10, 12, 20, 30, 1000, 2000, "hello world"] //查找數組里面值的索引 var idex = array.indexOf(2000); console.log(idex); //5 //數組刪除 //splice(開始索引,索引之后的個數) var data = array.splice(2,3); console.log(data); //[20, 30, 1000] console.log(array); //[10, 12, 2000, "hello world"]
1.給定一個數組,讓元素按照從大到小,從小到大排序
var array_num = [12,12,13,564,7,55,66]; //從小到大排序 array_num.sort(function (lhs,rhs) { if (lhs < rhs){ return -1; }else if(lhs > rhs) { return 1; }else { return 0; } }) console.log(array_num) // [7, 12, 12, 13, 55, 66, 564] console.log("======================="); array_num = [12,12,13,564,7,55,66]; //從大到小排序 array_num.sort(function (lhs,rhs) { if (lhs < rhs){ return 1; }else if(lhs > rhs) { return -1; }else { return 0; } }); console.log(array_num) //[564, 66, 55, 13, 12, 12, 7] console.log("=======================");
2.隨機打亂一個數組
array_num = [12,12,13,564,7,55,66]; array_num.sort(function () { if ( Math.random() < 0.5){ return -1; }else { return 1; } }); console.log(array_num); //[12, 12, 564, 13, 7, 66, 55] 隨機 console.log("=======================");
3.編寫程序 隨機的生存[10,100)范圍內的整數
function random_int_num(start,end) { return Math.floor(start + (end - start) * Math.random()); } console.log(random_int_num(10,100)); //69 隨機
關于“JS中使用數組的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。