Answers for "react js capitalize first letter all words of a string"

1

react native capitalize first letter

<Text>{str.charAt(0).toUpperCase() + str.slice(1);}</Text>
Posted by: Guest on June-07-2021

Code answers related to "react js capitalize first letter all words of a string"

Browse Popular Code Answers by Language