Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Created November 23, 2015 03:07
Show Gist options
  • Save dmidlo/d2e565aacd40a451cd1f to your computer and use it in GitHub Desktop.
Save dmidlo/d2e565aacd40a451cd1f to your computer and use it in GitHub Desktop.
function truncateStr(str, num) {
if(str.length > num)
{
if(num > 3)
{
str = str.slice(0,num-3)+"...";
}
else
{
str = str.slice(0,num)+"...";
}
}
return(str);
}
truncateStr("Peter Piper picked a peck of pickled peppers", 14);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment