javascript remove spaces from end of string code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: js remove space from string
string.split(" ").join("")
Example 3: how to trim leading spaces in html using css
<div style="white-space:pre-wrap"> <!-- New Line -->
<!-- 2 space --> This is my text
</div>