Giter Site home page Giter Site logo

understanding-es6's People

Contributors

jeyvie avatar wmuisnan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

understanding-es6's Issues

解构

解构支持哪些对象

经验证,除了 数组,对象,还有字符串,NodeList

const [fistChar] = 'abc'

console.log(fistChar)  // 'a'

const set  = new Set([1, 2])

const [a] = set;

console.log(a)  // 1

const map  = new Map([['a', 1], ['b', 3]])

const [item] = map;

console.log(item) // ['a', 1]

再读 - class

class

  • ES5语法糖
  • 不存在变量提升, 只能用 new 调用
  • 内部代码是严格模式、方法不能被new

extends

  • 简化了继承
  • extends 关键字后可以跟表达式
  • 解决了继承内置对象的问题

funtion

函数里,argumments 会和 有名参数的改变同步,但默认参数,会使得这一功能失效

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.