初探ECMAScript6

基础变化

  1. String类型新增了三个方法,不必使用indexOf来判断一个字符串是否在另一个字符串内 
//String changes
var a = "Hello world";
    var b = "Hello";
    var c = "world";
    function includes(source, dest) {
      return source.indexOf(dest) > -1;
    }
    function startsWith(source, dest) {
      return source.slice(0, dest.length) === dest;
    }
    function endsWith(source, dest) {
      return source.slice(source.length - dest.length, source.length) === dest;
    }

var msg = "Hello world!";

    console.log("msg startsWith Hello: ", msg.startsWith("Hello"));       // true
    console.log("msg endsWith !: ", msg.endsWith("!"));             // true
    console.log("msg includes o:  ", msg.includes("o"));             // true

    console.log("msg startsWith o: ", msg.startsWith("o"));           // false
    console.log("msg endsWith world!: ", msg.endsWith("world!"));        // true
    console.log("msg includes x:  ", msg.includes("x"));             // false

  1. Object.is方法用来判断两个参数是否相等,与全等(===)类似只是在+0和-0上以及NaN与NaN的判断上与全等不同 
console.log(+0 == -0);              // true
console.log(+0 === -0);             // true
console.log(Object.is(+0, -0));     // false

console.log(NaN == NaN);            // false
console.log(NaN === NaN);           // false
console.log(Object.is(NaN, NaN));   // true

console.log(5 == 5);                // true
console.log(5 == "5");              // true
console.log(5 === 5);               // true
console.log(5 === "5");             // false
console.log(Object.is(5, 5));       // true
console.log(Object.is(5, "5"));     // false

  1. let声明,let与var的作用相同,只是以let声明的变量的作用域在当前的{}块内 
function getValue(condition) {

    if (condition) {
        let value = "blue";

        // other code

        return value;
    } else {

        // value doesn't exist here

        return null;
    }

    // value doesn't exist here
}

  1. const关键字用来声明常量,常量一旦赋值就无法改变,其他的赋值表达式都会被忽略
  2. 解构赋值,引入解构赋值可以方便的从复杂的对象中取得所需的属性值 
var options = {
        repeat: true,
        save: false,
        rules: {
            custom: 10,
        }
    };

// later

var { repeat, save, rules: { custom }} = options;

console.log(repeat);        // true
console.log(save);          // false
console.log(custom);        // 10

  1. 类声明语法,目前许多前端框架比如dojo、extJs使用辅助设计使得Javascript看起来支持“类”,基于以上目的ES6引入类体系;目前在Chrome使用class关键字必须使用严格模式 
//class declaration
function PersonType(name) {
        this.name = name;
    }

    PersonType.prototype.sayName = function() {
        console.log(this.name);
    };

    let person = new PersonType("Nicholas");
    person.sayName();   // outputs "Nicholas"

    console.log(person instanceof PersonType);      // true
    console.log(person instanceof Object);      // true

(function(){
'use strict';
class PersonClass {
        constructor(name) {
            this.name = name;
        }
        sayName() {
            console.log(this.name);
        }
    }

    let person = new PersonClass("Nicholas");
    person.sayName();   // outputs "Nicholas"

    console.log(person instanceof PersonClass);
    console.log(person instanceof Object);
})()

  1. 属性访问器,通过使用get和set关键字来声明属性(Attribute),在ES5中需要借助Object.defineProperty来声明属性访问器 
//Accessor Properties
(function(){
      'use strict';
      class PersonClass {
        constructor(name) {
            this.name = name;
        }
        get Name(){
          return this.name;
        }
        set Name(value){
          this.name = value;
        }
      }

      let person = new PersonClass("Nicholas");
      console.log('person.Name: ', person.Name)   // outputs "Nicholas"
    })()

  1. 静态成员,ES5或者之前的代码通过在构造函数中直接定义属性来模拟静态成员;ES6则只需要在方法名前面加上static关键字 
//ES5
function PersonType(name) {
    this.name = name;
}

// static method
PersonType.create = function(name) {
    return new PersonType(name);
};

// instance method
PersonType.prototype.sayName = function() {
    console.log(this.name);
};

var person = PersonType.create("Nicholas");

//ES6
//Static Members
(function(){
      'use strict';
      class PersonClass {
        constructor(name) {
          this.name = name;
        }

        sayName() {
          console.log(this.name);
        }

        static create(name) {
          return new PersonClass(name);
        }
      }

      let person = PersonClass.create("Nicholas");
      console.log(person);
    })()

  1. 继承,ES5中需要借助prototype属性而ES6中引入extends关键字来实现继承 
//Handling Inheritance
(function(){
      'use strict';
      class PersonClass {
        constructor(name) {
          this.name = name;
        }
      }

      class Developer extends PersonClass {
        constructor(name, lang) {
          super(name);
          this.language = lang;
        }
      }

      var developer = new Developer('coder', 'Javascript');
      console.log("developer.name: ", developer.name);
      console.log("developer.language: ", developer.language);
    })()

模块机制

  当前关于JS的模块化已有两个重要的规范CommonJs和AMD,但毕竟不是原生的模块化,所以ES6中引入模块化机制,使用export和import来声明暴露的变量和引入需要使用的变量

  

 

Iterator和Generator

  Iterator拥有一个next方法,该方法返回一个对象,该对象拥有value属性代表此次next函数的值、done属性表示是否拥有继续拥有可返回的值;done为true时代表没有多余的值可以返回此时value为undefined;Generator函数使用特殊的声明方式,generator函数返回一个iterator对象,在generator函数内部的yield关键字声明了next方法的值

//Iterator & Generator
// generator
    function *createIterator() {
        yield 1;
        yield 2;
        yield 3;
    }

    // generators are called like regular functions but return an iterator
    var iterator = createIterator();
    console.log(iterator.next());
    console.log(iterator.next());
    console.log(iterator.next());
    console.log(iterator.next());

Promise

  ES6引入原生的Promise对象,Promise构造函数接受一个方法作为参数,该方法中可以调用resolve和reject方法,分别进入fulfill状态和fail状态

// Promise
var getJSON = function(url) {
  var promise = new Promise(function(resolve, reject){
    var client = new XMLHttpRequest();
    client.open("GET", url);
    client.onreadystatechange = handler;
    client.send();

    function handler() {
      if (this.readyState !== 4) {
        return;
      }
      if (this.status === 200) {
      debugger;
        resolve(this.responseText);
      } else {
        reject(new Error(this.statusText));
      }
    };
  });

  return promise;
};

getJSON("https://gis.lmi.is/arcgis/rest/services/GP_service/geocode_thjonusta_single/GeocodeServer?f=json").then(function(json) {
  console.log('Contents: ' + json);
}, function(error) {
  console.error('Error: ', error);
});

Proxy

  顾名思义用来作为一个对象或函数的代理。Proxy构造函数接受两个参数:target用来被封装的对象或函数、handler拥有一系列方法,重写这些方法以便当调用这些操作时会进入重写的方法中

•handler.getPrototypeOf

•handler.setPrototypeOf

•handler.isExtensible

•handler.preventExtensions

•handler.getOwnPropertyDescriptor

•handler.defineProperty

•handler.has

•handler.get

•handler.set

•handler.deleteProperty

•handler.enumerate

•handler.ownKeys

•handler.apply

•handler.construct 

handler.getPrototypeOf
handler.setPrototypeOf
handler.isExtensible
handler.preventExtensions
handler.getOwnPropertyDescriptor
handler.defineProperty
handler.has
handler.get
handler.set
handler.deleteProperty
handler.enumerate
handler.ownKeys
handler.apply
handler.construct

 

参考资料:

Understanding ECMAScript 6

ECMAScript 6 入门

时间: 2024-09-26 16:53:22

初探ECMAScript6的相关文章

graphviz dot初探

graphviz dot初探 简介 现在文档都用markdown保存到github.gitlab这种代码仓库.markdown遇到最大的问题就是对图片的引用, 直接用工具绘制的图片可以引用,但是这样没法像md文件那样在git仓库中进行版本管理,而且既然文档用了描述语言, 引用图片源文件能用描述语言就更好了. dot是graphviz的一种描述语言,可以通过graphviz提供的命令行工具生成图片文件. 安装 用gentoo(prefix)安装graphviz直接emerge即可,除了默认的选项,

把《c++ primer》读薄(4-2 c和c++的数组 和 指针初探)

督促读书,总结精华,提炼笔记,抛砖引玉,有不合适的地方,欢迎留言指正. 问题1.我们知道,将一个数组赋给另一个数组,就是将一个数组的元素逐个赋值给另一数组的对应元素,相应的,将一个vector 赋给另一个vector,也是将一个vector 的元素逐个赋值给另一vector 的对应元素: //将一个vector 赋值给另一vector,使用迭代器访问vector 中的元素 vector<int> ivec(10, 20); vector<int> ivec1; for (vecto

ASP.NET ViewState 初探 (1)

ASP.NET ViewState 初探 Susan WarrenMicrosoft Corporation 2001 年 11 月 27 日 与刚接触 ASP.NET 页面的开发人员交谈时,他们通常向我提出的第一个问题就是:"那个 ViewState 到底是什么?"他们的语气中流露出的那种感觉,就象我来到一家异国情调的餐馆,侍者端上一道我从未见过的菜肴时的那种感觉 - 既疑惑不解,又充满好奇.但肯定有人认为它不错,否则就不会提供了.所以,我会先尝一尝,或许会喜欢上它,尽管它看上去的确

于EYE candy滤镜应用于补间实例初探

滤镜 在刚接触EYE candy滤镜时,我就曾经对几个常用滤镜进行实例讲解,在讲解fire(火)滤镜的时候,用到的实例就是燃烧火焰字的动画,当时是用逐帧制作来实现效果的.后来在写<FW网页设计专家门诊>的时候,也沿用了这一方法,重点是介绍fire滤镜,而不是动画的制作过程. 在看到文字颜色渐变动画的相关帖子时,忽然想起来其实eye candy也可以和FW的内置效果一样,用补间实例来实现动画效果,比逐帧改滤镜参数要容易的多. 就拿制作燃烧火焰字的例子来看: 1.输入文字,设置渐变修饰一下,按F8

ASP.NET ViewState 初探 (1) 转自msdn

asp.net ASP.NET ViewState 初探 Susan WarrenMicrosoft Corporation 2001 年 11 月 27 日 与刚接触 ASP.NET 页面的开发人员交谈时,他们通常向我提出的第一个问题就是:"那个 ViewState 到底是什么?"他们的语气中流露出的那种感觉,就象我来到一家异国情调的餐馆,侍者端上一道我从未见过的菜肴时的那种感觉 - 既疑惑不解,又充满好奇.但肯定有人认为它不错,否则就不会提供了.所以,我会先尝一尝,或许会喜欢上它,

WebService初探(推荐)〔开心本人特别看好WebService〕

web Web Service初探(推荐)<br><br><br> <br>简介<br><br>回顾过去的六年,难以想象如果没有互联网的话,网络计算会变成什么样.更早的超文本模式失败了,而互联网成功了,这其中最基本的原因可以归结为:互联网简单且无处不在.从服务提供者(如网上商店)的角度来看,只要你会打字,你就可以接受服务.从服务API的角度来看,互联网上绝大多数的活动都可以由三种方法(GET, POST, 和PUT ) 以及一种标记语

Microsoft Visual Studio.NET及Borland Delphi6初探

visual Microsoft Visual Studio.NET及Borland Delphi6初探 最近安装上了Visual Studio.NET和Borland Delphi6这两个号称下一代编程环境的东东,感觉新东西实在不少,下面就说说我的感觉. 首先说Visual Studio.NET的安装.Microsoft在这方面的霸气一直不改,我还记得当初装Visual C++5.0的时候,本来我已经有了中文版的IE3.0,可是他一定要我先装一个英文版的IE3.01,否则就不允许继续,真是不给

COM技术初探(三):一个真正的COM

一.实现ISmipleMath,IAdvancedMath接口和DllGetClassObject() 1.1 实现ISmipleMath和IAdvancedMath接口 让我们将原来的CMath 类(CMath其实就是"COM技术初探(二)COM基础知识"里的那个CMath类)修改来实现ISmipleMath接口和IAdvancedMath接口. 修改的地方如下: 1) Math.h文件 /*@**#---2003-10-29 21:33:44 (tulip)---#**@ #inc

初探C# 3.0

C#3.0已经推出好一段时间了,由于种种原因,一直没有去学习,这两天在园 子中看到老赵的拯救C# 2.0,但是我们真做的到吗?.里面提到了些C#3.0的新 特性和优势.勾起了我对3.0的兴趣,初探学习一下,分享给新手. 在 C#2.0中,微软给我们带来了一些新的特性,例如泛型,匿名委托等.然而,这 些新的特性多多少少会给人一种从别的语言中"抄"来的感觉(例如 泛型类似C++的模板,一些特性类似Java中的一些东西).但是在C#3.0中,微软 给我带来的一些新特性可能是以前所有开发语言都