Just wondering, how would you check if a String has a character at a certain poisition?
Say String "cool" = hello
how would I make the equivelent of this:
if(cool.chatAt(4)!=null) {
doThis();
}
I know I can't use null with this, what would I use instead of null here?
