not


not(obj)
      

Return true if obj is false, false otherwise.

Examples:


not(true)
// false
not(false)
// true
not(4 < 5)
// false
      

Also see:

and
or


Core Module Index | Contents