How do I make the first letter of a string uppercase, but not change the case of any of the other letters?
For example:
\"this is a test\"
var str = "test string"; str = str.substring(0,1).toUpperCase() + str.substring(1);