Published
- 1 min read
javascript lowercase string
The solution for this is noted below
javascript lowercase string
Solution
var str = 'My Big Boy!'
var res = str.toLowerCase() //res is "my big boy!"
Try other methods by searching on the site. That is if this doesn’t work