What statement returns true if "nifty" is of type String?
"nifty".getType().equals("String")
"nifty".getType() == String
"nifty" instanceof String
"nifty".getClass().getSimpleName() == "String"