Answers for "how to remove any white spaces at the end of a string in javascript"

13

js remove space before string

var str = "  Some text ";
str.trim();
// str = "Some text"
Posted by: Guest on May-27-2020
1

remove white space from string in js

"hello world".replace(/\s/g, "");
Posted by: Guest on October-17-2021

Code answers related to "how to remove any white spaces at the end of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language