0
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の基本文法②

Last updated at Posted at 2021-04-07

#デイトラWeb制作コース中級編DAY2の学び

【この記事に書いてあること】

# 【学び】

1 

【配列】

① <複数のデータを管理する>

例 scores = [89,56,78]
・カッコ内の数字は要素と呼ばれる
・各要素は、indexで左から0,1,2...と数字が割り当てられてる

maiin.js
const scores = [87, 78, 37]



console.log(scores)
Arrray (3)[ 87,78,37 ]



console.log(scores[0])
87
console.log(scores[2])
37

② <カッコ内のデータを書き換える>

 scores[元要素] = 変更要素

maiin.js
scores[1] = 0



console.log(scores)
Array (3)[ 87,0,37 ]

③ <カッコ内のデータを追加する>

scores.push(追加要素)

maiin.js

scores.push(90)



console.log(scores)
Array (4)[ 87,0,37,90 ]

④ <いくつの要素が入っているか確認する>

scores.length

⑤ <要素の一番最後を削除する>
 scores.pop()

⑥ <要素の一番最初を削除する>
scores.shift()

2

【オブジェクト】

① <キー(プロパティ)で複数の値を管理する>

【メソッド】

① <オブジェクトの中に定義されている、プロパティで管理したファンクションのこと>

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