122
I want to convert a string to all lowercase, How to do that in Javascript?
toLowerCase() method is used to convert a string to all upper case.
toLowerCase()
Check the below example for usage:
let str ="Hello, World!"; console.log(str.toLowerCase());
Run here https://onecompiler.com/javascript/3xns6zdka