1.正续和顺序打印数组;
function print(arr,index){ if(index === arr.length) return; print(arr,index+1); console.log(arr[index]); }
数组的各种操作方法;
原文:http://www.cnblogs.com/clearfix/p/4163069.html