Answers for "javascript truncate with ellipsis"

3

javascript truncate with ellipsis

function truncate_with_ellipsis(s,maxLength) {
   if (s.length > maxLength) {
      return s.substring(0, maxLength) + '...';
   }
   return s;
};
alert(truncate_with_ellipsis("hello how are you today?",9));//hello how...
Posted by: Guest on September-10-2021

Code answers related to "javascript truncate with ellipsis"

Code answers related to "Javascript"

Browse Popular Code Answers by Language