Answers for "javascript how to limit text to 100 characters"

0

javascript set max length of string

String.prototype.trimEllip = function (length) {
  return this.length > length ? this.substring(0, length) + "..." : this;
}
Posted by: Guest on January-06-2020

Code answers related to "javascript how to limit text to 100 characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language