Published
- 1 min read
capital first letter react
The solution for this is noted below
capital first letter react
Solution
let fLCapital = (s) => (s = s.charAt(0).toUpperCase() + s.slice(1))
fLCapital('this is a test') // "This is a test"
Try other methods by searching on the site. That is if this doesn’t work