[TOC]
## 1.创建一个对象
~~~
class Person{
constructor(name,age){
this.name = name;
this.age = age;
}
sayName(){
console.log(this.name)
}
}
let cheng = new Person("cheng",18);
cheng.sayName();
~~~
## 2.extends继承
~~~
class Person{
constructor(name,age){
this.name = name;
this.age = age;
}
sayName(){
console.log(this.name)
}
}
class Teacher extends Person{
constructor(name,age,skill){
super(name,age);
this.skill = skill;
}
saySkill(){
console.log(this.skill);
}
}
let cheng = new Teacher("cheng",18,"HTML5");
cheng.saySkill();
~~~
- 将es6转为es5
- 第一节 webpack
- 第二章 基础语法
- 第1节 模块化
- 第2节set和map语法
- 2.1 set
- 第3节 变量
- 第4节 循环of
- 第5节 function
- 第6节 解构赋值
- 1.在对象在函数中的解构
- 第7节 字符串
- 第8节 面向对象
- 8-1 static静态属性,静态方法
- 第9节 JSON对象
- 9-1 Object.keys()
- 第10节 Promise
- 10.1 原理
- 10.2 回调地狱
- 第11节 generator
- 第一节 基本
- 第二节 generator-ajax
- 第12节 yield
- 第13节 asnyc
- 13.1
- 13.2 ajax
- 第14节 array
- 第15节 string方法拓展
- 第三章 webpack的简单配置
- 第四章 高级语法
- 第1节 promise
- a.实例
- b.promise
- 第2节 await,async