数组的各种操作方法;

1.倒序打印数组;

function print(arr,index){
    if(index === arr.length) return;
    print(arr,index+1);
    console.log(arr[index]);    
}

 2.顺序打印数组;

function print(arr, index){
    if(index === arr.length) return false;
    console.log( arr[ index ] );
    print( arr, index + 1 );
}       

3.打乱一个数组

function chaos ( arr ){
   arr.sort(function(){return Math.random() > 0.5 ? 1 : -1 });
}

 

posted @ 2014-12-14 21:33  北京-树苗  阅读(254)  评论(0编辑  收藏  举报