ES6 利用扩展运算符将伪数组转成真的数组

Posted malong1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 利用扩展运算符将伪数组转成真的数组相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>扩展运算符应用</title>
</head>
<body>
    <div>1</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
</body>
<script>
    /*利用扩展运算符将伪数组转成真数组*/
    var oDivs= document.getElementsByTagName(‘div‘);
    console.log(oDivs)
    console.log( oDivs instanceof Array)  //判断是不是真数组

    let arr =[...oDivs];
    console.log(arr)
    console.log(arr instanceof Array)

</script>
</html>

  

以上是关于ES6 利用扩展运算符将伪数组转成真的数组的主要内容,如果未能解决你的问题,请参考以下文章

ES6学习手册

多维数组转一维数组

再不学ES6你就out啦

ES6扩展——函数扩展之剩余函数

ES6 从入门到精通 # 12:数组的扩展方法一

ES6 从入门到精通 # 12:数组的扩展方法一