1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptでは配列はオブジェクト

Posted at

配列はオブジェクト

JavaScriptでは、配列はオブジェクトです。
image.png

arr[0] とすると 'a' が取り出せますが、これはプロパティ '0' の値が 'a' ということです。
だから arr['0'] でも同じように 'a' が取り出せます。
image.png

こんなこともできます。
image.png
key: "value"arr[3]ではありません。arr['key']です。

配列をカンマ区切りの文字列に変換

image.png
まぁjoin()使えばいいんですけどね。

以上です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?