配列操作

配列とは、複数の値を一つの変数に格納することができるデータ型です。JavaScriptでは、配列を作成するためには、角括弧([])を使用します。

例えば、以下のような配列を作成することができます。

const fruits = ["apple", "orange", "banana"];

配列には、様々な操作があります。ここでは、いくつかのサンプルコードを紹介します。

要素の追加

配列に要素を追加するには、pushメソッドを使用します。

const fruits = ["apple", "orange", "banana"];
fruits.push("grape");
console.log(fruits); // ["apple", "orange", "banana", "grape"]

要素の削除

配列から要素を削除するには、popメソッドを使用します。

const fruits = ["apple", "orange", "banana"];
fruits.pop();
console.log(fruits); // ["apple", "orange"]

要素の取得

配列から要素を取得するには、添字を使用します。添字は0から始まるため、最初の要素は0番目となります。

const fruits = ["apple", "orange", "banana"];
const firstFruit = fruits[0];
console.log(firstFruit); // "apple"

要素の数を取得

配列の要素数を取得するには、lengthプロパティを使用します。

const fruits = ["apple", "orange", "banana"];
const numberOfFruits = fruits.length;
console.log(numberOfFruits); // 3

以上、配列と配列操作についてのサンプルコードを紹介しました。配列はJavaScriptで非常によく使用されるデータ型の一つなので、しっかりと理解しておきましょう。