码迷,mamicode.com
首页 > 编程语言 > 详细

《深入理解JavaScript》—— ECMAScript5 新特性

时间:2016-10-22 20:37:38      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:efi   属性   eof   sealed   tor   creat   ons   free   ast   

(1) 标准库的新功能

1. 元编程

① 获取和设置原型

—— Object.create()

—— Object.getPrototypeOf()

② 通过属性描述符管理属性特性

—— Object.defineProperty()

—— Object.defineProperties()

—— Object.create()

—— Object.getOwnPropertyDescriptor()

③ 列出属性

—— Object.keys()

—— Object.getOwnPropertyNames()

④ 保护对象

—— Object.preventExtensions()

—— Object.isExtensible()

—— Object.seal()

—— Object.isSealed()

—— Object.freeze()

—— Object.isFrozen()

(2) 新方法

① 新方法 String.prototype.trim()

② 通过方括号访问字符

③ 新数组方法

—— Array.isArray()

—— Array.prototype.every()

—— Array.prototype.some()

—— Array.prototype.filter()

—— Array.prototype.forEach()

—— Array.prototype.indexOf()

—— Array.prototype.lastIndexOf()

—— Array.prototype.map()

—— Array.prototype.reduce()

④ 新Date方法

—— Date.now()

—— Date.prototype.toISOString()

(3) JSON

支持JSON。

—— JOSN.parse()

—— JOSN.stringify()

—— 一些内建对象具有特殊的toJSON方法:

Boolean.prototype.toJSON()

Number.prototype.toJSON()

String.prototype.toJSON()

Date.prototype.toJSON()

《深入理解JavaScript》—— ECMAScript5 新特性

标签:efi   属性   eof   sealed   tor   creat   ons   free   ast   

原文地址:http://www.cnblogs.com/luohaoran/p/5988063.html

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