Skip to content

Instantly share code, notes, and snippets.

@sonburn
Created November 12, 2017 20:15
Show Gist options
  • Save sonburn/9a6723acacf3e9315b357f2bc384e6f7 to your computer and use it in GitHub Desktop.
Save sonburn/9a6723acacf3e9315b357f2bc384e6f7 to your computer and use it in GitHub Desktop.
function truncateString(string,length) {
return (string.length <= length) ? string : "…" + string.substr(string.length-length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment