Computer Science, asked by rajendrarudrayal, 2 days ago

in which ease first letter of each word is in upper case​

Answers

Answered by ds5109607
0

zysysbs gb n chd ghfnfyd

Answered by MonstrousSerpent
0

Answer:

capitalize only the first letter of the string. function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); }

Explanation:

Similar questions