美文网首页
每日一学 2019-07-16

每日一学 2019-07-16

作者: Amber貝貝 | 来源:发表于2019-07-16 11:54 被阅读0次

    js中多行字符串 连接字符串

    1.通过+进行字符串的拼接

    let  str = "Hello";
           str = str + "World";
    console.log(str); //  HelloWorld
    

    2.使用concat()进行字符串拼接

    let  str1 = "Hello";
          str2 = "World";
    console.log(str1.concat(str2));   //  HelloWorld
    

    3.以数组作为中介用join连接字符串

    let arr = new Array();
          arr.push("Hello");
          arr.push("World");
    let str = arr.join("");
    console.log(str);    // HelloWorld
    

    4.ES6字符串拼接方法 模板字符串

    let name="amber";
          city ="hangzhou";
          message = `${name} is come from ${city}      !`;
    console.log(message);  // amber is come from hangzhou      !
    

    ps:在模板字符串中设置几个空格就会显示几个空格。

    相关文章

      网友评论

          本文标题:每日一学 2019-07-16

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