trim space js code example
Example 1: js remove space before string
var str = " Some text ";
str.trim();
// str = "Some text"
Example 2: javascript trim spaces
value = value.trim();
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>