js中模板字符串的使用

作者: 绿芽 | 来源:发表于2021-10-18 10:02 被阅读0次

    es6中增加了模板字符串,使字符的操作更加灵活和解决复杂的问题。
    语法:
    使用反引号( ` )来包裹普通字符串。如:

    let message = `Hello world!`; 
    console.log(message); // "Hello world!"
    console.log(typeof message); // "string"
    console.log(message.length); // 12
    

    在模板字符串中可以将任何有效的 JS 表达式嵌入到模板字面量中,并将其结果输出为 字符串的一部分。如:

    简单的变量替换

    let name = "myName",
    message = `Hello, ${ myName }.`; 
    console.log(message); // "Hello, myName." 
    

    复杂的表达式

    let count = 10,
    price = 0.25, 
    message = `${count} items cost $${(count * price).toFixed(2)}.`;
    console.log(message); // "10 items cost $2.50." 
    

    相关文章

      网友评论

        本文标题:js中模板字符串的使用

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