Create a function that takes a value as an argument and returns the type of this value.
realType(1) ➞ "integer" realType("a") ➞ "string" realType(true) ➞ "boolean" realType([]) ➞ "array" realType(null) ➞ "NULL"
N/A