FalseClass
FalseClass is a core class in the Ruby programming language that represents the boolean value false. In Ruby, booleans are objects: true is an instance of TrueClass and false is an instance of FalseClass. The value false is used to indicate negation, failure, or the absence of a true condition within program logic.
FalseClass inherits from Object, and the false value is a singleton object rather than a construct that
In terms of behavior, false participates in boolean expressions and control flow as a falsey value. Ruby
From a programming perspective, you can inspect the type of false at runtime (false.class returns FalseClass)