It is necessary to cut 40 characters + the closest space ...
eg:
The text is the best in the world - cropping
It was the only way
const productTitle = $('.li'); const limit = 40; productTitle.each((e, i) => { if (i.text.length > 40) { i.text = `${i.text.slice(0, limit)}...`; } });