Answer the question
In order to leave comments, you need to log in
What is the difference between type and enum?
What is the difference between writing
type Weekdays = "mon" | "tue" | "wed" | "thur" | "fri" | "sat" | "sun";
enum Weekdays { "mon", "tue", "wed", "thur", "fri", "sat", "sun" }
Answer the question
In order to leave comments, you need to log in
The fact that . If exactly lines are needed in enum, then exactly lines should be specified:
Otherwise, this:Weekday2s.mon === 0
enum Weekdays { mon = "mon", ...}
Well, except that enum will compile to JS - an object, and type will only be available at compile time.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question