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中文网其他相关文章!