Coupez le texte et ajoutez ... JS

const truncate = (input) => input.length > 5 ? `${input.substring(0, 5)}...` : input;
CoderHJ