Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

js 数组操作数方法总结 #23

Open
zlluGitHub opened this issue Apr 27, 2018 · 0 comments
Open

js 数组操作数方法总结 #23

zlluGitHub opened this issue Apr 27, 2018 · 0 comments

Comments

@zlluGitHub
Copy link
Owner

zlluGitHub commented Apr 27, 2018

  • Array 属性

    constructor | 返回对创建此对象的数组函数的引用。
    length | 设置或返回数组中元素的数目。
    prototype | 使您有能力向对象添加属性和方法。

  • Array 对象方法

    concat() | 连接两个或更多的数组,并返回结果。
    join() | 把数组的所有元素放入一个字符串。元素通过指定的分隔符进行分隔。
    pop() | 删除并返回数组的最后一个元素
    push() | 向数组的末尾添加一个或更多元素,并返回新的长度。
    reverse() | 颠倒数组中元素的顺序。
    shift() | 删除并返回数组的第一个元素
    slice() | 从某个已有的数组返回选定的元素
    sort() | 对数组的元素进行排序
    splice() | 删除元素,并向数组添加新元素。
    toSource() | 返回该对象的源代码。
    toString() | 把数组转换为字符串,并返回结果。
    toLocaleString() | 把数组转换为本地数组,并返回结果。
    unshift() | 向数组的开头添加一个或更多元素,并返回新的长度。
    valueOf() | 返回数组对象的原始值

  • 小案例

   <script>
        var obj = {
            0:"a",
            1:"b",
            2:"c",
            length:3
        }
        //将obj这个伪数组转化成数组用到concat()进行数组拼接
        //其中[]可以使用Array.prototype代替
        var arr = [].concat.apply([],obj);
        console.log(arr);
        //输出结果为["a","b","c"]

    </script>
  • 在一个名为风雨后见彩虹的博客中有一篇博文感觉总结的挺全面的,在这里就不多说了。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant