Inthislesson,we'llgooverTypeScript's unknown type.The unknown typeisthetype-safecounterpartofthe any type.Both unknown and any areso-called toptypes (alsoknownasuniversalsupertypes……
1. 多行字符串
var str = ``;
2. 字符串模板
var world = amp;quot;worldamp;quot;;
var str = `hello ${world}`;
3. 自动拆分字符串
var myName:string = 'ts';var myAge:number ...……