javascript trim by lenght code example
Example 1: remove whitespace javascript
var str = " Some text ";
str.trim();
Example 2: javascript set max length of string
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}