Null
The value null represents the intentional absence of any value.
Printing null or cast it to string always gives a string null.
puts null // null
puts str(null) // null
puts typeof null // nullLast updated
Was this helpful?