 
      
      is_nothing()
	Check whether value is nothing or not	
	
is_nothing(value)
value (any)  — A value
boolean — Returns true if value is nothing, returns false if otherwise
a = nothing
b = 23
 
is_nothing(a)   ' Returns true
is_nothing(b)   ' Returns false