LoginSignup
5
5

More than 5 years have passed since last update.

JavaScriptで文字数を削り、削った場合は末尾に"…"を付ける

Posted at
var hoge = "あいうえおかきくけこさしすせそたちつてと"

if (hoge.length > 10) {
  hoge = hoge.substring(0, 9) + "";
}

あいうえおかきくけ…

毎回どこかからコピペしてるので、整理&スニペット化。
こういうの、一杯あるなぁ…

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5