zoukankan      html  css  js  c++  java
  • js将一个数组插入另一个数组

    var cont =[1,2,3,4];
    var res =[4,5,6]
    for(var i=0;i<res;i++){
                cont.push( res.data.list[i]);
            }
    console.log(cont)

    这样就得到了一个合并的新数组,当然是从后面插入的。

    第二种:用concat

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <style>
                
            </style>
        </head>
        <body>
            
        </body>
    </html>
    <script>
        var arry =["1","2","3","4"];
        var dd =["6","7","8","9"];
            
        arry=arry.concat(dd)    ;
        console.log(arry);
    </script>

     

    结果就是:12346789

  • 相关阅读:
    灌注和宝石性道法价比分析
    bzoj1912
    bzoj3504
    poj3580
    bzoj1251
    bzoj3223
    bzoj1212
    bzoj3790
    记一次惨痛的比赛
    bzoj2734
  • 原文地址:https://www.cnblogs.com/a8497336/p/8876536.html
Copyright © 2011-2022 走看看