JSFiddle - React, Tailwind, and code Playground
JavaScript
var title = "The Lord Of The Rings: The Two Towers";
var shortTitle = title.substr(0,24).toLowerCase();
document.write(shortTitle.charAt(0).toUpperCase() + shortTitle.slice(1));
if (title.length > 24)
document.write('...');