JSFiddle - React, Tailwind, and code Playground

by mmansion

JavaScript

ellipses = function(str, maxLength) {
    var ellip = "\u2026"
    var line;

    return str.substr(0, maxLength) + ellip;
}
  
var result = ellipses("this is a test", 4);

document.write(result);