I need assistance with converting my enum value to a string format
export enum Roles {
manager = "manager",
user = "user"
}
console.log(" Roles.manager: ", Roles[Roles.manager]);
The following is displayed in the console:
Roles.manager: manager
What adjustments should I make for it to display as a String?