ES6新特性

const let 变量

使用var带来的麻烦:

  1. function getClothing(isCold) {
  2.   if (isCold) {
  3.     var freezing = 'Grab a jacket!';
  4.   } else {
  5.     var hot = 'It's a shorts kind of day.';
  6.     console.log(freezing);
  7.   }
  8. }
  9.  

运行getClothing(false)后输出的是undefined,这是因为执行function函数之前,所有变量都会被提升, 提升到函数作用域顶部.

letconst声明的变量解决了这种问题,因为他们是块级作用域,  代码块({}表示)中使用letconst声明变量, 该变量会陷入 暂时性死区直到该变量的声明被处理.

  1. function getClothing(isCold) {
  2.   if (isCold) {
  3.     const freezing = 'Grab a jacket!';
  4.   } else {
  5.     const hot = 'It's a shorts kind of day.';
  6.     console.log(freezing);
  7.   }
  8. }
  9.  

运行getClothing(false)后输出的是ReferenceError: freezing is not defined,因为 freezing 没有在 else 语句、函数作用域或全局作用域内声明,所以抛出 ReferenceError

关于使用letconst规则:

  • 使用let声明的变量可以重新赋值,但是不能在同一作用域内重新声明
  • 使用const声明的变量必须赋值初始化,但是不能在同一作用域类重新声明也无法重新赋值.

模板字面量

ES6之前,将字符串连接到一起的方法是+或者concat()方法,

  1. const student = {
  2.   name: 'Richard Kalehoff',
  3.   guardian: 'Mr. Kalehoff'
  4. };
  5.  
  6. const teacher = {
  7.   name: 'Mrs. Wilson',
  8.   room: 'N231'
  9. }
  10.  
  11. let message = student.name + ' please see ' + teacher.name + ' in ' + teacher.room + ' to pick up your report card.';

模板字面量本质上是包含嵌入式表达式的字符串字面量.
模板字面量用倒引号 ( `` )(而不是单引号 ( '' ) 或双引号( "" ))表示,可以包含用 ${expression} 表示的占位符

let message = `${student.name} please see ${teacher.name} in ${teacher.room} to pick up your report card.`;

   

解构

ES6,可以使用解构从数组和对象提取值并赋值给独特的变量

解构数组的值:

  1. const point = [10, 25, -34];
  2. const [x, y, z] = point;
  3. console.log(x, y, z);

Prints: 10 25 -34

[]表示被解构的数组x,y,z表示要将数组中的值存储在其中的变量, 在解构数组是, 还可以忽略值, 例如 const[x,,z]=point,忽略y坐标.

解构对象中的值:

  1. const gemstone = {
  2.   type: 'quartz',
  3.   color: 'rose',
  4.   karat: 21.29
  5. };
  6. const {type, color, karat} = gemstone;
  7. console.log(type, color, karat);

花括号 { } 表示被解构的对象,typecolor  karat 表示要将对象中的属性存储到其中的变量

对象字面量简写法

  1. let type = 'quartz';
  2. let color = 'rose';
  3. let carat = 21.29;
  4.  
  5. const gemstone = {
  6.   type: type,
  7.   color: color,
  8.   carat: carat
  9. };
  10.  
  11. console.log(gemstone);

使用和所分配的变量名称相同的名称初始化对象时如果属性名称和所分配的变量名称一样,那么就可以从对象属性中删掉这些重复的变量名称。

  1. let type = 'quartz';
  2. let color = 'rose';
  3. let carat = 21.29;
  4. const gemstone = {type,color,carat};
  5. console.log(gemstone);

简写方法的名称:

  1. const gemstone = {
  2.   type,
  3.   color,
  4.   carat,
  5.   calculateWorth: function() {
  6.     // 将根据类型(type),颜色(color)和克拉(carat)计算宝石(gemstone)的价值
  7.   }
  8. };

匿名函数被分配给属性 calculateWorth,但是真的需要 function 关键字吗?在 ES6 中不需要!

  1. let gemstone = {
  2.   type,
  3.   color,
  4.   carat,
  5.   calculateWorth() { ... }
  6. };

for...of循环

for...of循环是最新添加到 JavaScript 循环系列中的循环。
它结合了其兄弟循环形式 for 循环和 for...in 循环的优势,可以循环任何可迭代(也就是遵守可迭代协议)类型的数据。默认情况下,包含以下数据类型: StringArrayMap  Set,注意不包含 Object 数据类型(即 {})。默认情况下,对象不可迭代

for循环

  1. const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
  2. for (let i = 0; i < digits.length; i++) {
  3.   console.log(digits[i]);
  4. }

for 循环的最大缺点是需要跟踪计数器和退出条件。
虽然 for 循环在循环数组时的确具有优势,但是某些数据结构不是数组,因此并非始终适合使用 loop 循环。

for...in循环

  1. const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
  2.  
  3. for (const index in digits) {
  4.   console.log(digits[index]);
  5. }

依然需要使用 index 来访问数组的值
当你需要向数组中添加额外的方法(或另一个对象)时, for...in 循环会带来很大的麻烦。因为 for...in 循环循环访问所有 可枚举的属性,意味着如果向数组的原型中添加任何其他属性,这些属性也会出现在循环中。

  1. Array.prototype.decimalfy = function() {
  2.   for (let i = 0; i < this.length; i++) {
  3.     this[i] = this[i].toFixed(2);
  4.   }
  5. };
  6.  
  7. const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
  8.  
  9. for (const index in digits) {
  10.   console.log(digits[index]);
  11. }

forEach 循环 是另一种形式的 JavaScript 循环。但是,forEach() 实际上是数组方法,因此只能用在数组中。也无法停止或退出 forEach 循环。如果希望你的循环中出现这种行为,则需要使用基本的 for 循环。

for...of循环
for...of 循环用于循环访问任何可迭代的数据类型。
for...of 循环的编写方式和 for...in 循环的基本一样,只是将 in 替换为 of,可以忽略索引。

  1. const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
  2.  
  3. for (const digit of digits) {
  4.   console.log(digit);
  5. }
  6.  

建议使用复数对象名称来表示多个值的集合。这样,循环该集合时,可以使用名称的单数版本来表示集合中的单个值。例如,for (const button of buttons) {…}

for...of 循环还具有其他优势,解决了 for for...in 循环的不足之处。你可以随时停止或退出 for...of 循环。

  1. for (const digit of digits) {
  2.   if (digit % 2 === 0) {
  3.     continue;
  4.   }
  5.   console.log(digit);
  6. }

不用担心向对象中添加新的属性。for...of 循环将只循环访问对象中的值。

  1. Array.prototype.decimalfy = function() {
  2.   for (i = 0; i < this.length; i++) {
  3.     this[i] = this[i].toFixed(2);
  4.   }
  5. };
  6.  
  7. const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
  8.  
  9. for (const digit of digits) {
  10.   console.log(digit);
  11. }

展开运算符

展开运算符(用三个连续的点 (...) 表示)是 ES6 中的新概念,使你能够将字面量对象展开为多个元素

  1. const books = ["Don Quixote", "The Hobbit", "Alice in Wonderland", "Tale of Two Cities"];
  2. console.log(...books);

Prints: Don Quixote The Hobbit Alice in Wonderland Tale of Two Cities

展开运算符的一个用途是结合数组。

如果你需要结合多个数组,在有展开运算符之前,必须使用 Array concat() 方法。

  1. const fruits = ["apples", "bananas", "pears"];
  2. const vegetables = ["corn", "potatoes", "carrots"];
  3. const produce = fruits.concat(vegetables);
  4. console.log(produce);

Prints: ["apples", "bananas", "pears", "corn", "potatoes", "carrots"]

使用展开符来结合数组

  1. const fruits = ["apples", "bananas", "pears"];
  2. const vegetables = ["corn", "potatoes", "carrots"];
  3. const produce = [...fruits,...vegetables];
  4. console.log(produce);

剩余参数(可变参数)

使用展开运算符将数组展开为多个元素, 使用剩余参数可以将多个元素绑定到一个数组中.
剩余参数也用三个连续的点... ) 表示,使你能够将不定数量的元素表示为数组.

用途1: 将变量赋数组值时:

  1. const order = [20.17, 18.67, 1.50, "cheese", "eggs", "milk", "bread"];
  2. const [total, subtotal, tax, ...items] = order;
  3. console.log(total, subtotal, tax, items);

用途2: 可变参数函数
对于参数不固定的函数,ES6之前是使用 参数对象(arguments)处理:

  1. function sum() {
  2.   let total = 0; 
  3.   for(const argument of arguments) {
  4.     total += argument;
  5.   }
  6.   return total;
  7. }

ES6中使用剩余参数运算符则更为简洁,可读性提高:

  1. function sum(...nums) {
  2.   let total = 0; 
  3.   for(const num of nums) {
  4.     total += num;
  5.   }
  6.   return total;
  7. }

ES6箭头函数

ES6之前,使用普通函数把其中每个名字转换为大写形式:

  1. const upperizedNames = ['Farrin', 'Kagure', 'Asser'].map(function(name) {
  2.   return name.toUpperCase();
  3. });

箭头函数表示:

  1. const upperizedNames = ['Farrin', 'Kagure', 'Asser'].map(
  2.   name => name.toUpperCase()
  3. );

普通函数可以是函数声明或者函数表达式, 但是箭头函数始终都是表达式, 全程是 箭头函数表达式, 因此因此仅在表达式有效时才能使用,包括:

  • 存储在变量中,
  • 当做参数传递给函数,
  • 存储在对象的属性中。

const greet = name => `Hello ${name}!`;

   

可以如下调用:

greet('Asser');

   

如果函数的参数只有一个,不需要使用()包起来,但是只有一个或者多个, 则必须需要将参数列表放在圆括号内:

  1. // 空参数列表需要括号
  2. const sayHi = () => console.log('Hello Udacity Student!');
  3.  
  4. // 多个参数需要括号
  5. const orderIceCream = (flavor, cone) => console.log(`Here's your ${flavor} ice cream in a ${cone} cone.`);
  6. orderIceCream('chocolate', 'waffle');

一般箭头函数都只有一个表达式作为函数主题:

  1. const upperizedNames = ['Farrin', 'Kagure', 'Asser'].map(
  2.   name => name.toUpperCase()
  3. );

这种函数表达式形式称为简写主体语法:

  • 在函数主体周围没有花括号,
  • 自动返回表达式

但是如果箭头函数的主体内需要多行代码, 则需要使用常规主体语法:

  • 它将函数主体放在花括号内
  • 需要使用 return 语句来返回内容。
  1. const upperizedNames = ['Farrin', 'Kagure', 'Asser'].map( name => {
  2.   name = name.toUpperCase();
  3.   return `${name} has ${name.length} characters in their name`;
  4. });

javascript标准函数this

  1. new 对象

const mySundae = new Sundae('Chocolate', ['Sprinkles', 'Hot Fudge']);

   

sundae这个构造函数内的this的值是实例对象, 因为他使用new被调用.

  1. 指定的对象

const result = obj1.printName.call(obj2);

   

函数使用call/apply被调用,this的值指向指定的obj2,因为call()第一个参数明确设置this的指向

  1. 上下`文对象

data.teleport();

   

函数是对象的方法, this指向就是那个对象,此处this就是指向data.

  1. 全局对象或 undefined

teleport();

   

此处是this指向全局对象,在严格模式下,指向undefined.

javascriptthis是很复杂的概念, 要详细判断this,请参考this豁然开朗

箭头函数和this

对于普通函数, this的值基于函数如何被调用, 对于箭头函数,this的值基于函数周围的上下文, 换句话说,this的值和函数外面的this的值是一样的.

  1. function IceCream() {
  2.     this.scoops = 0;
  3. }
  4.  
  5. // IceCream 添加 addScoop 方法
  6. IceCream.prototype.addScoop = function() {
  7.     setTimeout(function() {
  8.         this.scoops++;
  9.         console.log('scoop added!');
  10.         console.log(this.scoops); // undefined+1=NaN
  11.         console.log(dessert.scoops); //0
  12.     }, 500);
  13. };
  14.  
  15.  
  16. ----------
  17.  
  18. 标题
  19.  
  20. const dessert = new IceCream();
  21. dessert.addScoop();

传递给 setTimeout() 的函数被调用时没用到 newcall()  apply(),也没用到上下文对象。意味着函数内的 this 的值是全局对象,不是 dessert 对象。实际上发生的情况是,创建了新的 scoops 变量(默认值为 undefined),然后递增(undefined + 1 结果为 NaN;

解决此问题的方式之一是使用闭包(closure):

  1. // 构造函数
  2. function IceCream() {
  3.   this.scoops = 0;
  4. }
  5.  
  6. // IceCream 添加 addScoop 方法
  7. IceCream.prototype.addScoop = function() {
  8.   const cone = this; // 设置 `this` `cone`变量
  9.   setTimeout(function() {
  10.     cone.scoops++; // 引用`cone`变量
  11.     console.log('scoop added!');
  12.     console.log(dessert.scoops);//1
  13.   }, 0.5);
  14. };
  15.  
  16. const dessert = new IceCream();
  17. dessert.addScoop();

箭头函数的作用正是如此, setTimeOut()的函数改为剪头函数:

  1. // 构造函数
  2. function IceCream() {
  3.   this.scoops = 0;
  4. }
  5.  
  6. // IceCream 添加 addScoop 方法
  7. IceCream.prototype.addScoop = function() {
  8.   setTimeout(() => { // 一个箭头函数被传递给setTimeout
  9.     this.scoops++;
  10.     console.log('scoop added!');
  11.     console.log(dessert.scoops);//1
  12.   }, 0.5);
  13. };
  14.  
  15. const dessert = new IceCream();
  16. dessert.addScoop();

默认参数函数

  1. function greet(name, greeting) {
  2.   name = (typeof name !== 'undefined') ?  name : 'Student';
  3.   greeting = (typeof greeting !== 'undefined') ?  greeting : 'Welcome';
  4.  
  5.   return `${greeting} ${name}!`;
  6. }
  7.  
  8. greet(); // Welcome Student!
  9. greet('James'); // Welcome James!
  10. greet('Richard', 'Howdy'); // Howdy Richard!

greet() 函数中混乱的前两行的作用是什么?它们的作用是当所需的参数未提供时,为函数提供默认的值。但是看起来很麻烦, ES6引入一种新的方式创建默认值, 他叫默认函数参数:

  1. function greet(name = 'Student', greeting = 'Welcome') {
  2.   return `${greeting} ${name}!`;
  3. }
  4.  
  5. greet(); // Welcome Student!
  6. greet('James'); // Welcome James!
  7. greet('Richard', 'Howdy'); // Howdy Richard!

默认值与解构

  1. 默认值与解构数组
  1. function createGrid([width = 5, height = 5]) {
  2.   return `Generates a ${width} x ${height} grid`;
  3. }
  4.  
  5. createGrid([]); // Generates a 5 x 5 grid
  6. createGrid([2]); // Generates a 2 x 5 grid
  7. createGrid([2, 3]); // Generates a 2 x 3 grid
  8. createGrid([undefined, 3]); // Generates a 5 x 3 grid

createGrid() 函数预期传入的是数组。它通过解构将数组中的第一项设为 width,第二项设为 height。如果数组为空,或者只有一项,那么就会使用默认参数,并将缺失的参数设为默认值 5

但是存在一个问题:

createGrid(); // throws an error

   

Uncaught TypeError: Cannot read property 'Symbol(Symbol.iterator)' of undefined

出现错误,因为 createGrid() 预期传入的是数组,然后对其进行解构。因为函数被调用时没有传入数组,所以出现问题。但是,我们可以使用默认的函数参数!

  1. function createGrid([width = 5, height = 5] = []) {
  2.   return `Generating a grid of ${width} by ${height}`;
  3. }
  4. createGrid(); // Generates a 5 x 5 grid

Returns: Generates a 5 x 5 grid

  1. 默认值与解构函数

就像使用数组默认值解构数组一样,函数可以让对象成为一个默认参数,并使用对象解构:

  1. function createSundae({scoops = 1, toppings = ['Hot Fudge']}={}) {
  2.   const scoopText = scoops === 1 ? 'scoop' : 'scoops';
  3.   return `Your sundae has ${scoops} ${scoopText} with ${toppings.join(' and ')} toppings.`;
  4. }
  5.  
  6. createSundae({}); // Your sundae has 1 scoop with Hot Fudge toppings.
  7. createSundae({scoops: 2}); // Your sundae has 2 scoops with Hot Fudge toppings.
  8. createSundae({scoops: 2, toppings: ['Sprinkles']}); // Your sundae has 2 scoops with Sprinkles toppings.
  9. createSundae({toppings: ['Cookie Dough']}); // Your sundae has 1 scoop with Cookie Dough toppings.
  10. createSundae(); // Your sundae has 1 scoop with Hot Fudge toppings.
  1. 数组默认值与对象默认值

默认函数参数只是个简单的添加内容,但是却带来很多便利!与数组默认值相比,对象默认值具备的一个优势是能够处理跳过的选项。看看下面的代码:

function createSundae({scoops = 1, toppings = ['Hot Fudge']} = {}) { … }

   

 createSundae() 函数使用对象默认值进行解构时,如果你想使用 scoops 的默认值,但是更改 toppings,那么只需使用 toppings 传入一个对象:

createSundae({toppings: ['Hot Fudge', 'Sprinkles', 'Caramel']});

   

将上述示例与使用数组默认值进行解构的同一函数相对比。

function createSundae([scoops = 1, toppings = ['Hot Fudge']] = []) { … }

   

对于这个函数,如果想使用 scoops 的默认数量,但是更改 toppings,则必须以这种奇怪的方式调用你的函数:

createSundae([undefined, ['Hot Fudge', 'Sprinkles', 'Caramel']]);

   

因为数组是基于位置的,我们需要传入 undefined 以跳过第一个参数(并使用默认值)来到达第二个参数。

Javascript

ES5创建类:

  1. function Plane(numEngines) {
  2.   this.numEngines = numEngines;
  3.   this.enginesActive = false;
  4. }
  5.  
  6. // 由所有实例 "继承" 的方法
  7. Plane.prototype.startEngines = function () {
  8.   console.log('starting engines...');
  9.   this.enginesActive = true;
  10. };

ES6类只是一个语法糖,原型继续实际上在底层隐藏起来, 与传统类机制语言有些区别.

  1. class Plane {
  2.   //constructor方法虽然在类中,但不是原型上的方法,只是用来生成实例的.
  3.   constructor(numEngines) {
  4.     this.numEngines = numEngines;
  5.     this.enginesActive = false;
  6.   }
  7.   //原型上的方法, 由所有实例对象共享.
  8.   startEngines() {
  9.     console.log('starting engines…');
  10.     this.enginesActive = true;
  11.   }
  12. }
  13.  
  14. console.log(typeof Plane); //function

javascript中类其实只是function, 方法之间不能使用,,不用逗号区分属性和方法.

静态方法
要添加静态方法,请在方法名称前面加上关键字 static

  1. class Plane {
  2.   constructor(numEngines) {
  3.     this.numEngines = numEngines;
  4.     this.enginesActive = false;
  5.   }
  6.   static badWeather(planes) {
  7.     for (plane of planes) {
  8.       plane.enginesActive = false;
  9.     }
  10.   }
  11.   startEngines() {
  12.     console.log('starting engines…');
  13.     this.enginesActive = true;
  14.   }
  15. }
  • 关键字class带来其他基于类的语言的很多思想,但是没有向javascript中添加此功能
  • javascript类实际上还是原型继承
  • 创建javascript类的新实例时必须使用new关键字

super extends

使用新的superextends关键字扩展类:

  1. class Tree {
  2.   constructor(size = '10', leaves = {spring: 'green', summer: 'green', fall: 'orange', winter: null}) {
  3.     this.size = size;
  4.     this.leaves = leaves;
  5.     this.leafColor = null;
  6.   }
  7.  
  8.   changeSeason(season) {
  9.     this.leafColor = this.leaves[season];
  10.     if (season === 'spring') {
  11.       this.size += 1;
  12.     }
  13.   }
  14. }
  15.  
  16. class Maple extends Tree {
  17.   constructor(syrupQty = 15, size, leaves) {
  18.     super(size, leaves); //super用作函数
  19.     this.syrupQty = syrupQty;
  20.   }
  21.  
  22.   changeSeason(season) {
  23.     super.changeSeason(season);//super用作对象
  24.     if (season === 'spring') {
  25.       this.syrupQty += 1;
  26.     }
  27.   }
  28.  
  29.   gatherSyrup() {
  30.     this.syrupQty -= 3;
  31.   }
  32. }

使用ES5编写同样功能的类:

  1. function Tree(size, leaves) {
  2.   this.size = size || 10;
  3.   this.leaves = leaves || {spring: 'green', summer: 'green', fall: 'orange', winter: null};
  4.   this.leafColor;
  5. }
  6.  
  7. Tree.prototype.changeSeason = function(season) {
  8.   this.leafColor = this.leaves[season];
  9.   if (season === 'spring') {
  10.     this.size += 1;
  11.   }
  12. }
  13.  
  14. function Maple (syrupQty, size, leaves) {
  15.   Tree.call(this, size, leaves);
  16.   this.syrupQty = syrupQty || 15;
  17. }
  18.  
  19. Maple.prototype = Object.create(Tree.prototype);
  20. Maple.prototype.constructor = Maple;
  21.  
  22. Maple.prototype.changeSeason = function(season) {
  23.   Tree.prototype.changeSeason.call(this, season);
  24.   if (season === 'spring') {
  25.     this.syrupQty += 1;
  26.   }
  27. }
  28.  
  29. Maple.prototype.gatherSyrup = function() {
  30.   this.syrupQty -= 3;
  31. }

super 必须在 this 之前被调用

在子类构造函数中,在使用 this 之前,必须先调用超级类。

  1. class Apple {}
  2. class GrannySmith extends Apple {
  3.   constructor(tartnessLevel, energy) {
  4.     this.tartnessLevel = tartnessLevel; // 'super' 之前会抛出一个错误!
  5.     super(energy);
  6.   }
  7. }


作者:Showdy
链接:https://www.jianshu.com/p/87008f4f8513
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值