Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:59
Show Gist options
  • Save nishinoshake/75cf674184ac85dde664 to your computer and use it in GitHub Desktop.
Save nishinoshake/75cf674184ac85dde664 to your computer and use it in GitHub Desktop.
JSで文字数制限
function restrictString(str, restrict) {
postTxt = '...';
if ( str.length > restrict ) str = str.substr(0, restrict) + postTxt;
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment