Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IAmAnubhavSaini/444577a0b95e4ad14880 to your computer and use it in GitHub Desktop.
Save IAmAnubhavSaini/444577a0b95e4ad14880 to your computer and use it in GitHub Desktop.
function truncate(str, num) {
if(num >= str.length){
return str;
}
num = num - 3 >= 0 ? num-3 : num;
return str.slice(0, num)+'...';
}
truncate("A-tisket a-tasket A green and yellow basket", 11);
truncate("Absolutely Longer", 2);
truncate("A-tisket a-tasket A green and yellow basket", 11) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment