ES6 の機能
今日学んだこと
最新の JavaScript (ES6 以降) では、言語をより強力で読みやすく、開発者にとって使いやすいものにする機能が導入されました。概要は次のとおりです:
機能: 文字列補間と複数行の文字列を有効にします。
例:
let year = 2024; console.log(`This is year ${year}`);
機能: 関数を記述するための短い構文を提供します。
例:
let add = (a, b) => console.log(`${a} + ${b} = ${a + b}`); add(4, 5); // Output: 4 + 5 = 9
機能: 引数が渡されない場合、関数パラメータにデフォルト値を割り当てます。
例:
function callMe(name = "Damilare") { console.log(`My name is ${name}`); } callMe(); // Output: My name is Damilare callMe("Ayoola"); // Output: My name is Ayoola
//Array Destructuring: const [a, b] = [2, 3]; console.log(a, b); // Output: 2 3 //Object Destructuring: const { age, year } = { age: 32, year: "Year 5" }; console.log(age, year); // Output: 32 Year 5
const arr1 = [0, 1, 2]; const arr2 = [...arr1, 3, 4, 5]; console.log(arr2); // Output: [0, 1, 2, 3, 4, 5]
const collectRest = (first, ...rest) => { console.log(`First number is ${first}`); console.log(`The rest of the numbers: ${rest}`); }; collectRest(1, 2, 3, 4); // Output: // First number is 1 // The rest of the numbers: [2, 3, 4]
機能: 反復可能なオブジェクト (配列など) のループを簡素化します。
例:
let arr = [1, 2, 3, 4, 5]; for (let num of arr) { console.log(num); } // Output: // 1 // 2 // 3 // 4 // 5
以上が私の React の旅: 10 日目の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。