码迷,mamicode.com
首页 > 其他好文 > 详细

typescript 之 字符串特性

时间:2017-10-21 12:17:27      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:特性   blog   bbb   表达   ons   str   hello   script   esc   

1、多行字符串(用  `xxx`  双撇号包裹字符串)

var string = `aaa
bbb
ccc`;

 

2、字符串模板(在多行字符串里面引入一个表达式去插入变量或者一个方法的调用)

var string = "aaa";
var getString = function(){
  return "aaa";
}
console.log(`hello ${string}`);  // "hello aaa"
console.log(`hello ${getString()}`);  // "hello aaa"

 

3、自动拆分字符串(当在用一个字符串模板去调用一个方法的时候,这个字符串模板里面表达式的值会自动赋给被调用方法中的参数)

function hello (template, name, age) {
  console.log(template);
  console.log(name);
  console.log(age);
}
var myName = "张三";
var getAge = function () {
  return 18;
}
hello`Hello, my name‘s ${myName}, i‘m ${getAge()}`;

 

typescript 之 字符串特性

标签:特性   blog   bbb   表达   ons   str   hello   script   esc   

原文地址:http://www.cnblogs.com/joffe/p/7702585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!