var c = str.substring(0,1).toUpperCase();
var c = str[0].toUpperCase();
var c = str.charAt(0).toUpperCase();