typescript学习(一) 变量类型

Undefined :

Number:数值类型;

string : 字符串类型;

Boolean: 布尔类型;

enum:枚举类型; enum REN { man:'男',women :'女' } console.log(REN.man) //男

any : 任意类型; 定义任意类型 var a:any = 10  a="十",a=true

void:空类型;

Array : 数组类型;

Tuple : 元祖类型;

Null :空类型。

猜你喜欢

转载自www.cnblogs.com/xpcool/p/9951574.html