Remove whitespaces inside a string in javascript

后端 未结 4 1156
[愿得一人]
[愿得一人] 2020-11-29 00:22

I\'ve read this question about javascript trim, with a regex answer.

Then I expect trim to remove the inner space between Hello and World.



        
4条回答
  •  感动是毒
    2020-11-29 00:42

    Probably because you forgot to implement the solution in the accepted answer. That's the code that makes trim() work.

    update

    This answer only applies to older browsers. Newer browsers apparently support trim() natively.

提交回复
热议问题