Skip to content

Instantly share code, notes, and snippets.

@mrroot5
Created April 24, 2019 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrroot5/0820f3bdffeac8b017675df32030bc0d to your computer and use it in GitHub Desktop.
Save mrroot5/0820f3bdffeac8b017675df32030bc0d to your computer and use it in GitHub Desktop.
Truncate string
const truncateString = (str, num) =>
str.length > num ? str.slice(0, num > 3 ? num - 3 : num) + '...' : str;
truncateString('boomerang', 7); // 'boom...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment