码迷,mamicode.com
首页 > 编程语言 > 详细

21-6-数组相关api

时间:2019-09-07 13:14:04      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:one   oct   utf-8   title   order   char   OLE   ros   function   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body {
            font-family: "Microsoft YaHei", serif;
        }

        body, dl, dd, p, h1, h2, h3, h4, h5, h6 {
            margin: 0;
        }

        ol, ul, li {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        img {
            border: none
        }
    </style>
</head>
<body>

<script>
    // let a = [4,5,6];
    // console.log(a);
    // a[0] = 9;
    // console.log(a);


    // push
    // pop
    // shift
    // unshift



    // push
    // 参数:任意数据
    // 功能:直接改变原数组,添加
    // 返回值:返回改变后的数组的长度

    // let a =["a","b"];
    // a.push("c","d");
    // console.log(a);


    // pop
    //     参数:不需要参数
    //     功能:改变原数组,删除最后一位
    //     返回值:被删除的那个数据

    // let a = ["a","b"];
    // a.pop();
    // console.log(a);

    // let b = [5,function (x) {alert(x)}];
    // b.pop()(b[0]);


    // unshift和push对应往前边加

    // let a = ["a","b"];
    // a.unshift("c");
    // console.log(a);

    // shift和pop对应删除第一个
    let a = ["a","b"];
    a.shift();
    console.log(a);

</script>
</body>
</html>

 

21-6-数组相关api

标签:one   oct   utf-8   title   order   char   OLE   ros   function   

原文地址:https://www.cnblogs.com/zhangyu666/p/11480106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!