Is there any equivalent in javascript/nodejs for PHP’s mb_convert_case() function?
Question posted in Javascript
A very good W3school tutorial can be found here.
A very good W3school tutorial can be found here.
Is there any equivalent in javascript/nodejs for PHP’s mb_convert_case() function?
2
Answers
I think this is what you were looking for:
There’s no javascript alternatives for this function. But in javascript you can use
toUpperCase
/toLocaleUpperCase
andtoLowerCase
/toLocaleLowerCase
for convert string to case that you need.For more complicated cases you can look at some third party libraries. For example lodash have some useful helpers for work with string case.