Hacker News new | ask | show | jobs
by 1f60c 2231 days ago
I think GP was joking. A far more straightforward way to shorten text to a given length is:

  const shorten = (text, length) => text.substring(0, length);
1 comments

Probably way more efficient than relying on a side effect to a DOM update as well.
But it is the Web. Somebody must be using it.