let string = "hello World!"; let capitalizedString = string[0].toUpperCase() + string.slice(1); // capitalizedString => Hello World!