Deriving Types From Values 15 exercises
Problem

Access Specific Values in an as const Object

Here were have an programModeEnumMap object that keeps different groupings in sync:


export const programModeEnumMap = {
GROUP: "group",
ANNOUNCEMENT: "announcement",
ONE_ON_ONE: "1on1",
SELF_DIRECTED: "selfDirected",
PLANNED_ONE_ON_ONE: "planned1on1",
PLANNED_SELF_DIRECTED: "planned

Loading exercise