I hope there is a way to get an array from const enum. for example: const enum gender{ male = 1, female = 2, } I need to there is a way to get an array from the const enum gender, and the result like this: [1,2] Thanks a lot!
I hope there is a way to get an array from const enum.
for example:
const enum gender{
male = 1,
female = 2,
}
I need to there is a way to get an array from the const enum gender, and the result like this:
[1,2]
Thanks a lot!