js remove space before string

JavaScript
var str = "  Some text ";
str.trim();
// str = "Some text"
Source

Also in JavaScript: