「TypeScript」列挙型 (enum) を使用する方法
書式
enum 列挙名{
定数1,
定数2
}
使用例
enum Auth { CREATE, UPDATE, DELETE } console.log(Auth.UPDATE); console.log(Auth.DELETE); console.log(Auth[Auth.UPDATE]);
実行結果
1 2 UPDATE
Coding Changes the World
書式
enum 列挙名{
定数1,
定数2
}
使用例
enum Auth { CREATE, UPDATE, DELETE } console.log(Auth.UPDATE); console.log(Auth.DELETE); console.log(Auth[Auth.UPDATE]);
実行結果
1 2 UPDATE