mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
332 B
332 B
date | id | title |
---|---|---|
2020-09-30 | 4e52541b-5119-4228-97b2-f17f5a23b138 | TypeScript Enums |
Syntax
enum CardSuit {
Clubs,
Diamonds,
Hearts,
Spades
}
// Sample usage
var card = CardSuit.Clubs;
// Safety
card = "not a member of card suit"; // Error : string is not assignable to type `CardSuit`