“Заработать на строке” Ответ

Заработать на строке

const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)

capitalize("follow for more")
// Result: Follow for more
thefazeelahmed

Капитализируйте строку

const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)

capitalize("javascript one-liners are fun")
//Javascript one-liners are fun
Rich Rhinoceros

Ответы похожие на “Заработать на строке”

Смотреть популярные ответы по языку

Смотреть другие языки программирования