Lower-case to uppercase | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Lower-case to uppercase

Hello to everyone, how can I change first letters of each word in a text from lower-case to uppercase?

17th Jan 2018, 7:52 AM
Giannis Tiniakos
Giannis Tiniakos - avatar
3 Answers
+ 2
This is too complicated I guess :p but thanks for your time.
17th Jan 2018, 8:20 AM
Giannis Tiniakos
Giannis Tiniakos - avatar
+ 1
here is my implementation. basically split the text into an array then loop over the array to capitalize each first letter. not the most efficient solution.. https://code.sololearn.com/WfHs0V9DbpBt/?ref=app
17th Jan 2018, 8:18 AM
Jonathan Pizarra (JS Challenger)
Jonathan Pizarra (JS Challenger) - avatar
+ 1
document.getElementById("uppercas").style.text-transform = "Uppercase"
17th Jan 2018, 8:42 AM
Android Boi
Android Boi - avatar