how to get the first character of the last namebritindexof javascript code example
Example: js get first letter of string
var x = 'some string';
alert(x.charAt(0)); // alerts 's'
var x = 'some string';
alert(x.charAt(0)); // alerts 's'