码迷,mamicode.com
首页 > 其他好文 > 详细

ES6的相关新属性

时间:2016-08-01 20:59:33      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

1、class……extends

  es6中的class与es5 中的function差不多;

class Student extends People , student  继承了people父类;

 

 

2、let与var的区别

let声明块级变量,不知道下文变量的设置。

3、es6中的module导入与导出

import……from…… 导入模块

export * from ‘src/other_module‘;
export { foo, bar } from ‘src/other_module‘;
export { foo as myFoo, bar } from ‘src/other_module‘;

exports  导出函数

   更  es5  命名函数是一样的  在function嵌添加 exports  不需要再下面用onclick调用,可以直接引用即可

    export const sqrt = Math.sqrt;
    export function square(x) {
       return x * x;
     }
    export function diag(x, y) {
       return sqrt(square(x) + square(y));
    }

 

4、

 

ES6的相关新属性

标签:

原文地址:http://www.cnblogs.com/leyan/p/5727008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!