- 配列の宣言と初期化: 配列を宣言するには、次のように書きます。
let myArray = []; // 空の配列を宣言
let numbers = [1, 2, 3, 4, 5]; // 値を持つ配列を宣言
- 配列への要素の追加と削除:
配列に要素を追加するには、
push()
メソッドを使用します。
let fruits = ['apple', 'banana', 'orange'];
fruits.push('grape'); // 配列の末尾に要素を追加
console.log(fruits); // 結果: ['apple', 'banana', 'orange', 'grape']
配列から要素を削除するには、pop()
メソッドを使用します。
let removedElement = fruits.pop(); // 配列の末尾から要素を削除
console.log(removedElement); // 結果: 'grape'
console.log(fruits); // 結果: ['apple', 'banana', 'orange']
- 配列の要素のアクセスと変更: 配列の要素には、インデックスを使用してアクセスできます。インデックスは0から始まります。
let fruits = ['apple', 'banana', 'orange'];
console.log(fruits[0]); // 結果: 'apple'
fruits[1] = 'grape'; // 配列の要素を変更
console.log(fruits); // 結果: ['apple', 'grape', 'orange']
- 配列の反復処理:
配列の要素に対して反復処理を行うには、
for
ループやforEach()
メソッドを使用します。
let numbers = [1, 2, 3, 4, 5];
for (let i = 0; i < numbers.length; i++) {
console.log(numbers[i]);
}
numbers.forEach(function(number) {
console.log(number);
});
以上が、JavaScriptで配列を使用する方法といくつかのコーディング例です。配列は非常に柔軟なデータ構造であり、さまざまなプログラミングタスクに役立ちます。詳細な情報や他の配列の操作方法については、公式のJavaScriptドキュメントやチュートリアルを参照することをおすすめします。