0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

javascript joinメソッド

Posted at

Joinメソッドとは

配列に対して使用できるメソッドの一つ
配列に入っている要素を引数で指定した文字で、区切り、文字列連結する

引数なしで呼び出すとデフォルトである、カンマ区切りで実行される

const names = [Alice, Bob, Hanako];

names.join('/') → Alice/Bob/Hanako
names.join('')  → AliceBobHanako
names.join()    → Alice,Bob,Hanako
0
0
1

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?