Boolean

A boolean is a very simple data type with a value of either true or false. Booleans are most commonly used with conditional statements, for instance:

local testBoolean = true
 
if testBoolean == true then
	-- Value of 'testBoolean' is true, so this condition is executed
else
	-- If value of 'testBoolean' is false, this condition is executed
end

if testBoolean then
	-- Same output as if testBoolean == true then condition.
end

Last updated