JavaScript - オブジェクトデストラクチャリング:入門ガイド
こんにちは、未来のJavaScript魔術師たち!今日は、オブジェクトデストラクチャリングの世界に興味深い旅に出かけます。難しそうに聞こえるかもしれませんが、このチュートリアルの終わりまでに、プロのようにオブジェクトをデストラクチャリングできるようになるでしょう!お気に入りの飲み物を用意して、リラックスして、一緒に潜りましょう!
オブジェクトデストラクチャリングとは?
宝箱(オブジェクト)が満載の異なるアイテムを持っていると imagine して下さい。オブジェクトデストラクチャリングは、その宝箱から特定のアイテムを素早く取り出し、変数に割り当てる魔法の杖のようなものです。すごいでしょう?
簡単な例から始めましょう:
const person = {
name: "Alice",
age: 28,
job: "Developer"
};
// デストラクチャリングなし
const name = person.name;
const age = person.age;
const job = person.job;
console.log(name, age, job); // 出力: Alice 28 Developer
// デストラクチャリングあり
const { name, age, job } = person;
console.log(name, age, job); // 出力: Alice 28 Developer
この例では、オブジェクト person
に3つのプロパティがあります。デストラクチャリング構文 { name, age, job } = person
は、これらのプロパティを抽出し、同名の変数に割り当てます。まるで、「JavaScript、この person
オブジェクトから name
、age
、job
を取り出して、変数を作ってくれ」と言っているようなものです。
オブジェクトデストラクチャリングと変数の名前変更
時々、抽出したプロパティに別の名前を付けたい場合があります。問題ありません!オブジェクトデストラクチャリングはあなたをサポートします:
const computer = {
brand: "Apple",
model: "MacBook Pro",
year: 2021
};
const { brand: manufacturer, model: productName, year: releaseYear } = computer;
console.log(manufacturer); // 出力: Apple
console.log(productName); // 出力: MacBook Pro
console.log(releaseYear); // 出力: 2021
ここでは、「brand
を manufacturer
に、model
を productName
に、year
を releaseYear
に変更して」と言っているようなものです。オブジェクトのプロパティにニックネームを付けるようなものです!
オブジェクトデストラクチャリングとデフォルト値
オブジェクトにプロパティが存在するかどうか不明な場合どうしますか?心配しないでください!デフォルト値を設定できます:
const book = {
title: "The Hitchhiker's Guide to the Galaxy",
author: "Douglas Adams"
};
const { title, author, pages = 200 } = book;
console.log(title); // 出力: The Hitchhiker's Guide to the Galaxy
console.log(author); // 出力: Douglas Adams
console.log(pages); // 出力: 200
この例では、「pages
が book
オブジェクトに存在しない場合は、デフォルト値として200を使用して」と言っています。オブジェクトのプロパティに対するバックアッププランのようなものです!
オブジェクトデストラクチャリングとリスト演算子
特定のプロパティをいくつか取り出し、残りを一緒にまとめたい場合があります。リスト演算子(...
)が登場します:
const fruit = {
name: "Apple",
color: "Red",
taste: "Sweet",
origin: "USA",
price: 1.5
};
const { name, color, ...otherDetails } = fruit;
console.log(name); // 出力: Apple
console.log(color); // 出力: Red
console.log(otherDetails); // 出力: { taste: "Sweet", origin: "USA", price: 1.5 }
ここでは、「name
と color
をくれ、残りは otherDetails
にまとめて」と言っています。残りのプロパティをきれいにまとめるようなものです!
オブジェクトデストラクチャリングと関数パラメータ
オブジェクトデストラクチャリングは関数パラメータと一緒に使うと、コードがきれいで読みやすくなります:
// デストラクチャリングなし
function printPersonInfo(person) {
console.log(`${person.name} is ${person.age} years old and works as a ${person.job}.`);
}
// デストラクチャリングあり
function printPersonInfo({ name, age, job }) {
console.log(`${name} is ${age} years old and works as a ${job}.`);
}
const alice = {
name: "Alice",
age: 28,
job: "Developer",
hobby: "Painting"
};
printPersonInfo(alice);
// 出力: Alice is 28 years old and works as a Developer.
デストラクチャリングされたバージョンでは、「関数、オブジェクトを受け取ったら、これらの特定のプロパティをくれ」と言っています。メニューから正好なものをオーダーするウェイターのようなものです!
締め括り
おめでとうございます!JavaScriptのオブジェクトデストラクチャリングの力を解き放ちました。主に学んだ方法をまとめましょう:
方法 | 説明 |
---|---|
基本デストラクチャリング | const { prop1, prop2 } = object |
変数の名前変更 | const { prop: newName } = object |
デフォルト値 | const { prop = defaultValue } = object |
リスト演算子 | const { prop1, ...rest } = object |
関数パラメータ | function fn({ prop1, prop2 }) {} |
忘れずに、練習は完璧を生みます。これらの技術を自分のコードで試してみてください。間もなくJavaScriptの忍者のようにデストラクチャリングができるようになるでしょう!
ハッピーコーディング、そしてデストラクチャリングの力があなたと共にあります!??
Credits: Image by storyset