ES6入门用法&字符串模板
标签:
JavaScript
字符串模板
传统的JavaScript的输出模板是
$('#result').append( 'There are <b>' + basket.count + '</b> ' + 'items in your basket, ' + '<em>' + basket.onSale + '</em> are on sale!');
ES6引入了模板字符串来解决这个问题
$('#result').append(` There are <b>${basket.count}</b> items in your basket, <em>${basket.onSale}</em> are on sale! `);
用反引号(`)来标识
// 普通字符串`In JavaScript '\n' is a line-feed.`// 多行字符串,会保留所有的空格和缩进`In JavaScript this is not legal.`console.log(`string text line 1 string text line 2`);// 字符串中嵌入变量,需要将变量名写在${}之中let name = "Bob", time = "today";`Hello ${name}, how are you ${time}?`//模板字符串之中还能调用函数。function fn() { return "Hello World"; }`foo ${fn()} bar`// foo Hello World bar
作者:徐金俊
链接:https://www.jianshu.com/p/fd3a8cebc1fd
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦