Boolean
The type boolean (#boolean) is the type of the values true and false. Both nil and false make a condition false; any other value makes it true.
Example
local a = false
local b = true
print(a, b)
The type boolean (#boolean) is the type of the values true and false. Both nil and false make a condition false; any other value makes it true.
local a = false
local b = true
print(a, b)