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

es6新特性

时间:2016-07-05 00:58:23      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

变量--------------------------

let

const:必须直接给一个变量赋值。注意,对象的属性或数组成员还是可以改变的。

const MY_OBJECT = {some: 1};

MY_OBJECT.some = ‘body‘; // Cool

箭头函数:=>

字符串------------------------

方法:startsWith(),endsWith(),includes(),repeat()

模板字符串:${...}

数组---------------------------

Array.from():从类数组和可遍历对象中创建 Array 的实例。

Array.of():

array1.find()

array1.findIndex()

array1.fill()

Math------------------------

Math.sign 返回数字的符号,结果为 1、-1 或 0

Math.trunc 返回无小数位的数字

Math.cbrt 返回数字的立方根

扩展操作符(...)------------------------

es6新特性

标签:

原文地址:http://www.cnblogs.com/cag2050/p/5642099.html

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