Turn an enum into a string suitable for debugging. If value is not found in the enum the value itself is returned as string
Optional
const s = getEnumName( PropertyIdentifier, PropertyIdentifier.PRESENT_VALUE);console.log(s); // "PRESENT_VALUE(85)" Copy
const s = getEnumName( PropertyIdentifier, PropertyIdentifier.PRESENT_VALUE);console.log(s); // "PRESENT_VALUE(85)"
Turn an enum into a string suitable for debugging. If value is not found in the enum the value itself is returned as string