SOURCE

//创建数组
var arr1=[1,2,3,4,5,6];

//获取数组长度
document.write(arr1.length+"<br/>")
//获取数组的某一段
document.write(arr1.slice(2,5)+"<br/>");
//往数组头添加一个元素
arr1.unshift(10)
document.write(arr1+"<br/>");
//往数组尾添加一个元素
arr1.push(0);
document.write(arr1+"<br/>");
//删除数组第一个元素
arr1.shift();
document.write(arr1+"<br/>");
//删除数组最后一个元素
arr1.pop();
document.write(arr1+"<br/>");
//对字符串数组按升序排序
document.write(arr1.sort()+"<br/>");

//排在右边返回1,排在左边返回-1
var nunArr=[6,8,3,2,4];
//升序排序
function upcompare(a,b){
    if(a>b){
        return 1;
    }
    if(a==b){
        return 0;
    }
    if(a<b){
        return -1;
    }
}
nunArr.sort(upcompare);
document.write("升序排序:"+nunArr+"<br/>")

//降序排序
function downcompare(a,b){
    if(a>b){
        return -1;
    }
    if(a==b){
        return 0;
    }
    if(a<b){
        return 1;
    }
}
nunArr.sort(downcompare);
document.write("降序排序:"+nunArr+"<br/>")

//反转数组reverse
var arr2=["one","two","three"];
document.write("反转数组:"+arr2.reverse()+"<br/>");
//链接符join
document.write("默认join数组:"+arr2.join("-")+"<br/>");

//题目
var str="绿叶学习网";
//分割字符串,并用尖括号链接
var str1=str.split("").join("><");
document.write(str1+"<br/>");
var str2=str1.split("");
document.write(str2+"<br/>");
str2.unshift("<")
document.write(str2+"<br/>");
str2.push(">");
document.write(str2+"<br/>");
document.write(str2.join("")+"<br/>");
console 命令行工具 X clear

                    
>
console