Skip to content

Instantly share code, notes, and snippets.

@fervisa
Created July 2, 2013 22:31
Show Gist options
  • Select an option

  • Save fervisa/5913834 to your computer and use it in GitHub Desktop.

Select an option

Save fervisa/5913834 to your computer and use it in GitHub Desktop.
Javascript truncate method for strings. Replaces the end of string with ellipsis (...)
String.prototype.truncate =
function(n){
return this.substr(0, n-1)+(this.length > n ? '…' : '');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment