Let category = "Baby Dress"
I want it to be trimed by spaces and text into lowercase. the output as "babydress". I used the following code. but it returns "baby dress".
category.trim(" ").toLowerCase()
I need to understand why it is not doing as I expected and what are the ways to do it.
