es6 (ecmascript 2015) 为 javascript 引入了多项新功能和语法改进。以下是最重要的 es6 语法的总结和示例:
1. let 和 const 关键字
es6 为块作用域变量引入了 let 和 const。
- let:块范围变量,可以更新,但不能在同一范围内重新声明。
- const:块作用域常量,无法更新或重新声明。
// let example let age = 25; age = 30; // allowed // const example const name = 'john'; name = 'doe'; // error: assignment to constant variable
2. 箭头函数(=>)
箭头函数为编写函数提供了更短的语法,并且不绑定自己的 this。
// regular function function add(a, b) { return a + b; } // arrow function const add = (a, b) => a + b; // implicit return
3. 模板文字
模板文字允许使用反引号 (`) 嵌入表达式和多行字符串。
const name = 'alice'; const greeting = `hello, ${name}!`; // string interpolation console.log(greeting); // hello, alice!
4. 解构赋值
解构允许您将数组中的值或对象中的属性解压到不同的变量中。
- 数组解构:
const numbers = [1, 2, 3]; const [first, second] = numbers; console.log(first); // 1 console.log(second); // 2
- 对象解构:
const person = { name: 'john', age: 25 }; const { name, age } = person; console.log(name); // john console.log(age); // 25
5. 默认参数
函数可以有默认参数值。
const greet = (name = 'guest') => `hello, ${name}!`; console.log(greet()); // hello, guest! console.log(greet('alice')); // hello, alice!
6. 其余参数 (...)
剩余运算符 (...) 允许函数接受不定数量的参数作为数组。
const sum = (...numbers) => numbers.reduce((acc, num) => acc + num, 0); console.log(sum(1, 2, 3, 4)); // 10
7. 扩展运算符 (...)
扩展运算符 (...) 允许将可迭代对象(例如数组、字符串)扩展为单个元素。
const arr1 = [1, 2, 3]; const arr2 = [4, 5, 6]; const combined = [...arr1, ...arr2]; console.log(combined); // [1, 2, 3, 4, 5, 6]
8. 课程
es6 引入了类语法来定义构造函数和方法。
class person { constructor(name, age) { this.name = name; this.age = age; } greet() { console.log(`hello, my name is ${this.name}.`); } } const john = new person('john', 25); john.greet(); // hello, my name is john.
9. 模块(导出和导入)
es6 为具有导出和导入功能的模块提供原生支持。
- 导出:
// file: math.js export const add = (a, b) => a + b; export const subtract = (a, b) => a - b;
- 导入:
// file: app.js import { add, subtract } from './math'; console.log(add(2, 3)); // 5
10. 承诺
promise 代表异步操作的最终完成(或失败)。
const fetchdata = () => { return new promise((resolve, reject) => { settimeout(() => { resolve('data received'); }, 2000); }); }; fetchdata().then(data => console.log(data)); // data received (after 2 seconds)
11. for-of 循环
for-of 循环允许您迭代可迭代对象,例如数组、字符串等
const fruits = ['apple', 'banana', 'cherry']; for (const fruit of fruits) { console.log(fruit); } // apple // banana // cherry
12. 地图和设置
es6 引入了新的集合类型:map(用于键值对)和 set(用于唯一值)。
- 地图:
const map = new map(); map.set('name', 'john'); map.set('age', 25); console.log(map.get('name')); // john
- 设置:
const set = new Set([1, 2, 3, 3]); // duplicates are ignored set.add(4); console.log(set.has(3)); // true console.log(set.size); // 4
这些 es6 功能显着提高了 javascript 代码的可读性、可维护性和功能性。
以上就是电子书的详细内容,更多请关注php中文网其它相关文章!
版权声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系 yyfuon@163.com