TypeScript入门与实战
上QQ阅读APP看书,第一时间看更新

5.5.2 string字面量类型

字符串字面量和模板字面量都能够创建字符串。字符串字面量和不带参数的模板字面量可以作为string字面量类型使用。示例如下:


01 const a: 'hello' = 'hello';
02 
03 const b: `world` = `world`;

string字面量类型是string类型的子类型,因此可以将string字面量类型赋值给string类型。示例如下:


01 const a: 'hello' = 'hello';
02 const b: `world` = `world`;
03 
04 let c: string;
05 c = a;
06 c = b;