original string is "a,d,k" I want to remove all "," and make it to "adk". I tried: "a,d,k".replace(/,/,"") but it doesn't work. Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You aren't assigning the result of the replace method back to your variable. When you call replace, it returns a new string without modifying the old one. For example, load this into your favorite browser:
In this case, If you want to change
|
|||||||||||||||||
|
|
Use
Note the |
|||
|
|
|
It's more common answer. And can be use with |
|||
|
|