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?

More than 5 years have passed since last update.

初めてのJavaScript③

Last updated at Posted at 2019-01-29

今日の学習内容です。


配列
[値1, 値2, 値3]のようにつくる。
配列に入っているそれぞれの値のことを要素と呼ぶ。
配列を代入する定数名は、慣習上複数形にすることが多い。(fruits など)

「console.log(定数名)」とすると、配列がコンソールに出力される。

配列の要素にはそれぞれインデックス番号という番号がついている。
インデックス番号は、0から始まる。

要素に値を代入することでその要素を上書きすることができる。

<例文>
繰り返し処理をする場合
const fruits=["apple","banana""orange"];

for(let i=0; i<3; i++){
console.log(fruits[i]);
}
iが0~2の間ループする
変数iを用いて要素を取得

length(レンクス)
console.log(animals.length);
配列.lengthとすることで、配列の要素数を取得できる。
<例文>
for(let i=0; 1<fruits.length; i++){
console.log(fruits[i]);
}


・躓いた点
**for(変数の定義、条件式、変数の更新)**を忘れており
for(let i=0; i<3; i++){
console.log(fruits[i]);
}
の例文を見たときに混乱してしまった。

・感じた点
いきなり難しくなった。


次はオブジェクトからです。

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