if an object is an instance of a given class with the instance_of? method from Object
myString = "asdf" puts myString.instance_of? String # => true puts myString.instance_of? Fixnum # => false