主页 分类 关于

TypeScript 枚举类型

TypeScript学习笔记

非常常见的一种类型

enum Status {
Reuben = 625,
Angel = 624,
Stitch = 626,
}

function getServe(status: any) {
if (status === Status.Reuben) {
return "鲁本";
} else if (status === Status.Angel) {
return "安琪";
} else if (status === Status.Stitch) {
return "史迪奇";
}
}

const result = getServe(Status.AngelStitch);

// 可以凭实验品编号查询
// const result = getServe(626);

console.log(`实验品${result}`);









作者: 我叫史迪奇
本文来自于: https://sdq3.link/TypeScript-Enum.html博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议