<title>Make the First Character of a String Uppercase in JavaScript</title>
<p><strong>Note:</strong> Click the "Show Output" button or refresh the page to run the test again.</p>
function capitalizeFirstLetter(string){
return string.charAt(0).toUpperCase() + string.slice(1);
str1 = capitalizeFirstLetter(str1);
document.write('<p>' + str1 + '</p>');
var str2 = 'the Gods must be crazy.';
str2 = capitalizeFirstLetter(str2);
document.write('<p>' + str2 + '</p>');
var str3 = '/app/index.html';
str2 = capitalizeFirstLetter(str3);
document.write('<p>' + str3 + '</p>');