JavaScriptのArray.fromメソッド:詳細ガイド
JavaScriptのArray.from
メソッド:詳細ガイド
Array.fromメソッドとは?
Array.from
は、引数として渡されたオブジェクトを新しい配列に変換する静的メソッドです。このメソッドは、配列以外にも、文字列、数値セット、ジェネレータなど、さまざまな種類のオブジェクトを変換することができます。
基本的な構文は以下の通りです。
Array.from(iterableObject, [mapFunction]);
iterableObject
: 変換対象のオブジェクトmapFunction
: (オプション) 各要素を変換するために使用される関数
基本的な使い方
Array.from
の最も基本的な使い方は、配列類似オブジェクトを新しい配列に変換することです。
const numbers = [1, 2, 3, 4, 5];
const newArray = Array.from(numbers);
console.log(newArray); // [1, 2, 3, 4, 5]
この例では、numbers
配列がArray.from
に渡され、その結果、新しい配列newArray
が作成されます。newArray
は元の配列とまったく同じ内容になります。
mapFunctionを使った要素の変換
mapFunction
オプションパラメータを使用すると、Array.from
で各要素を変換することができます。この関数は、イテレータ内の各値に対して順番に呼び出され、その戻り値が新しい配列の要素となります。
const numbers = [1, 2, 3, 4, 5];
const squaredNumbers = Array.from(numbers, x => x * x);
console.log(squaredNumbers); // [1, 4, 9, 16, 25]
上記の例では、mapFunction
は渡された各数値を二乗し、その結果がsquaredNumbers
配列に格納されます。
イテレータオブジェクトの変換
Array.from
は、配列以外にも、文字列、数値セット、ジェネレータなど、さまざまな種類のイテレータオブジェクトを変換することができます。
例:文字列から配列を作成
const str = "Hello, World!";
const letters = Array.from(str);
console.log(letters); // ['H', 'e', 'l', 'l', 'o', ',', ' ', 'W', 'o', 'r', 'l', 'd', '!']
例:数値セットから配列を作成
const set = new Set([1, 2, 3, 4, 5]);
const arrayFromSet = Array.from(set);
console.log(arrayFromSet); // [1, 2, 3, 4, 5]
例:ジェネレータから配列を作成
function* range(start, end) {
for (let i = start; i <= end; i++) {
yield i;
}
}
const numbers = Array.from(range(1, 10));
console.log(numbers); // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
高度な応用例
Array.from
は、さまざまな高度な操作にも利用できます。
例:空の要素を持つ配列を作成
const length = 5;
const emptyArray = Array.from({ length });
console.log(emptyArray); // [undefined, undefined, undefined, undefined, undefined]
例:特定の値で初期化された配列を作成
const length = 5;
const filledArray = Array.from({ length }, () => 7);
console.log(filledArray); // [7, 7, 7, 7, 7]
例:2つの配列を連結
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const combinedArray = Array.from(array1, ...array2);
console.log(combinedArray); // [1, 2
const numbers = [1, 2, 3, 4, 5];
const newArray = Array.from(numbers);
console.log(newArray); // [1, 2, 3, 4, 5]
この例では、mapFunction
を使用して、Array.from
で各要素を二乗する方法を示します。
const numbers = [1, 2, 3, 4, 5];
const squaredNumbers = Array.from(numbers, x => x * x);
console.log(squaredNumbers); // [1, 4, 9, 16, 25]
const str = "Hello, World!";
const letters = Array.from(str);
console.log(letters); // ['H', 'e', 'l', 'l', 'o', ',', ' ', 'W', 'o', 'r', 'l', 'd', '!']
const set = new Set([1, 2, 3, 4, 5]);
const arrayFromSet = Array.from(set);
console.log(arrayFromSet); // [1, 2, 3, 4, 5]
function* range(start, end) {
for (let i = start; i <= end; i++) {
yield i;
}
}
const numbers = Array.from(range(1, 10));
console.log(numbers); // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
const length = 5;
const emptyArray = Array.from({ length });
console.log(emptyArray); // [undefined, undefined, undefined, undefined, undefined]
const length = 5;
const filledArray = Array.from({ length }, () => 7);
console.log(filledArray); // [7, 7, 7, 7, 7]
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const combinedArray = Array.from(array1, ...array2);
console.log(combinedArray); // [1, 2, 3, 4, 5, 6]
部分配列を作成
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const subArray = Array.from(numbers, 2, 5); // start: 2, end: 5 (exclusive)
console.log(subArray); // [3, 4, 5]
逆順に要素を並べた配列を作成
Array.from
の代替方法
スプレッド構文
スプレッド構文は、配列を新しい配列に展開したり、他の配列に結合したりする際に便利な方法です。構文は次のとおりです。
const newArray = [...iterableObject];
利点:
- シンプルで読みやすい構文
Array.from
よりも多くのブラウザでサポートされている
欠点:
mapFunction
のような要素変換機能がない- イテレータオブジェクトのみを処理できる
例:
const numbers = [1, 2, 3, 4, 5];
const newArray = [...numbers];
console.log(newArray); // [1, 2, 3, 4, 5]
slice()とforEach()の組み合わせ
この方法は、より古いブラウザで使用できますが、少し冗長です。
const iterableObject = [1, 2, 3, 4, 5];
const newArray = [];
iterableObject.forEach(function(value) {
newArray.push(value);
});
console.log(newArray); // [1, 2, 3, 4, 5]
- ほとんどのブラウザで動作
- 冗長で読みづらいコード
手動ループ
これは最も基本的な方法ですが、非効率的で冗長です。
const iterableObject = [1, 2, 3, 4, 5];
const newArray = [];
for (let i = 0; i < iterableObject.length; i++) {
newArray.push(iterableObject[i]);
}
console.log(newArray); // [1, 2, 3, 4, 5]
- すべてのブラウザで動作
- 非効率的で冗長
Array.from
は、多くの場合、配列類似オブジェクトやイテレータから新しい配列を作成するための最良の方法です。しかし、スプレッド構文やslice()
とforEach()
の組み合わせなどの代替方法の方が、状況によっては適切な場合があります。