-
-
Notifications
You must be signed in to change notification settings - Fork 9
transcendent value undef
IsaacShelton edited this page Mar 21, 2022
·
1 revision
undef
is the value of transcendent variables that haven't been assigned a value
#print non_existent_transcendent_variable
undef
undef
should NOT be assigned to transcendent variables by the programmer, instead null
should be used
#set has_feature undef // BAD
#set has_feature null // GOOD