Js limit text length code example
Example 1: js string limit length
string.substring(0,lengthRequired+1);
Example 2: javascript set max length of string
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}