I have been working on typescript and I want display the values other than enum string but the value must be numberic.
export enum yearofstudy {
FirstYear,
secondYear,
ThirdYear
}
In the above code, I need the values to be 0,1,2 but display to be 1st year, 2nd year, 3rd year. How can I do that?