How would you convert a String to an Int?
String.valueOf("21")
Integer.parseInt("21")
String.toInt("21")
"21".intValue()