code register log in programs messages download about privacy terms french production
home / documentation / Object / !
Object
examples
not true
input
!true
result
false
not false
input
!false
result
true
not nothing
input
!nothing
result
true
not not nothing
input
!!nothing
result
false
not array
input
![]
result
false
not object
input
!{}
result
false
not zero
input
!0
result
false