美文网首页
08字符串的特点

08字符串的特点

作者: asmuzi | 来源:发表于2019-01-04 15:30 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>Document</title>
      <script>
        // 字符串的不可变
        // var s = 'abc';
        // s = 'xxxxxxyyy';
        // 
        // 
        // 当拼接大量字符串的时候,会有性能问题
        var s = '';
        for (var i = 0; i < 100000; i++) {
          // s += i;
          s = s + i;
        }
        console.log(s);
      </script>
    </head>
    <body>
      
    </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:08字符串的特点

          本文链接:https://www.haomeiwen.com/subject/defkrqtx.html