I\'m looking through the lodash docs and other Stack Overflow questions - while there are several native JavaScript ways of accomplishing this task, is there a way I can convert
with lodash 4, you can use _.capitalize()
_.capitalize('JOHN') It returns 'John'
_.capitalize('JOHN')
See https://lodash.com/docs/4.17.5#capitalize for details