《前端面试题》- JS基础 - 简单谈谈ES6新增了哪些内容

问题

简单谈谈ES6新增了哪些内容

回答

ES新增的对象有:

Symbol、Set、Map、WeakSet和WeakMap、ArrayBuffer、TypedArray、DataView、Promise、GeneratorFunction 和 Generator、Reflect、Proxy
具体可参考:https://www.jianshu.com/p/b54f7ad1cae3https://www.jianshu.com/p/fcaa8c435d39

ES6原有对象新增
  • Object新增了4个方法属性: assign,getOwnPropertySymbls,is和setPrototypeOf。
  • String对象自身新增两个方法属性:fromCodePoint和raw。String.proprtype新增6个方法属性: codePointAt, startsWith, endsWith, includes, normalize和repeat。
  • Array对象新增了两个方法属性: of 和from。 Array.prototype新增了7个方法属性:fill,copyWithin, find, findIndex,entries,keys,values.

具体可参考:https://www.jianshu.com/p/e3e5ad6d6d3f

其他内容:
let、const、解构赋值、字符串扩展等

这里不需要把所有的点都回答到,大致回答下知道ES6有新增的部分即可。

你可能感兴趣的:(前端,javascript,react.js,开发语言,ecmascript)