13. Boolean
Boolean(bool) Type
Boolean has only two possible values, true
and false
Conditions and comparison operators needs value to be bool Type.
main.go
Declaring Boolean
Boolean are declared using one of the following ways:
main.go
Zero value for bool is false
Last updated