Used to determine if a method, variable, or global variable is defined.
defined? method_call # True if a method is defined
defined? method_call(arg) # True if a method with signature is defined
defined? variable # True if variable is defined
defined? $myglobal # True if global is defined