Answers for "You can access the first character of a string as if it were the first element of an array."

2

js get first letter of string

var x = 'some string';
alert(x.charAt(0)); // alerts 's'
Posted by: Guest on July-19-2020

Code answers related to "You can access the first character of a string as if it were the first element of an array."

Code answers related to "Javascript"

Browse Popular Code Answers by Language