博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
template-string
阅读量:5237 次
发布时间:2019-06-14

本文共 746 字,大约阅读时间需要 2 分钟。

var s1 = `string text`;console.log(s1);console.log(typeof(s1));var s2 =`text line1    text line2`;console.log(s2);// trueconsole.log('\`' === '`');var a = 1,    b = 2;console.log(`sum is ${a + b} \n sub is $(b - a)`);// template strings with tagvar a = 5,	b = 10;function tag(strings, ...values){    // console.log(strings);    // console.log(strings.length);    console.log(strings[0]);    console.log(strings[1]);    console.log(strings[2]);    console.log(values[0]);    console.log(values[1]);    return "something";}//foo === 'something'var foo = tag`hello ${a + b} world ${a * b}`;function template(strings, ...values){	console.log(strings);	console.log(values);}template`${0}${1}${0}`;

  

转载于:https://www.cnblogs.com/ax-null/p/6803938.html

你可能感兴趣的文章
SQL Server 如何查询表定义的列和索引信息
查看>>
GCD 之线程死锁
查看>>
NoSQL数据库常见分类
查看>>
一题多解 之 Bat
查看>>
Java 内部类
查看>>
{面试题7: 使用两个队列实现一个栈}
查看>>
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
Apache Common-IO 使用
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>
linux常用命令
查看>>
NHibernate.3.0.Cookbook第四章第6节的翻译
查看>>
使用shared memory 计算矩阵乘法 (其实并没有加速多少)
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>