I have a condition with two value. if the condition equal to 0 it return Absent and if equal to 1 it returns present.
now I want to add the third value into my condition. if the condition equal to 3 it returns Unacceptable absent.
this is my conditions with two value:
(status >= 1 ? "Present" : "Absent")
how can I change the condition?