JavaScript中的Array對象方法調用,javascriptarray

來源:互聯網
上載者:User

JavaScript中的Array對象方法調用,javascriptarray
方法concatfor  迴圈與for in 迴圈

<html><head><script type="text/javascript"> alert(2);var arr=[4,5,6,8,7,4];alert(arr);alert("length:"+arr.length);var arr2=[6,8,9,5,4];alert(arr2);alert(arr2[0]);alert(arr.concat(arr,arr2));for(var x in arr2){alert(x+":"+arr2[x]);}alert(23);</script></head><body></body></html>



join   pop   shift 

var arr=[4,5,6,8,7,4];var arr2=[6,8,9,5,4];alert(arr.join("-"));alert(arr.pop());//刪除並返回最後一個元素,如果數組已經為空白,                 //那麼此方法不改變數組並返回undefined值alert(arr.shift());//刪除並返回數組的第一個元素


join  pop  shift   push  unshift  reverse

   

var arr=[4,5,6,8,7,4];var arr2=[6,8,9,5,4];var arr3=[0];alert(arr.join("-"));alert(arr.pop());//刪除並返回最後一個元素,如果數組已經為空白,                 //那麼此方法不改變數組並返回undefined值alert(arr.shift());//刪除並返回數組的第一個元素alert("push: "+arr3.push(5,4,6,4));//5  向數組末尾添加一個或者多個元素,並返回數組新長度alert("unshift" + arr3.unshift(3,2));//7向數組開頭添加一個或者多個元素,並返回數組新長度alert(arr3);alert(arr3.reverse());//顛倒數組中元素的順序。

sort

var arr2=[6,8,50,9,5,4];alert(arr2.sort(sortNumber));function sortNumber(a,b){       return a-b}






著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.