es6学习笔记
Posted 飞旋的留恋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es6学习笔记相关的知识,希望对你有一定的参考价值。
class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
static classMethod() {
console.log(‘fathor jt:hello‘);
}
}
class ColorPoint extends Point { //mix(Cons1,Cons2)
constructor(x, y, color) {
super(x, y);
this.color = color; // 正确
}
//原型方法
ptMethod(){
console.log(‘pt:hello‘);
}
static classMethod() {
//静态方法也是可以从super对象上调用
super.classMethod();
console.log(‘jt:hello‘);
}
get prop() {
return ‘getter‘;
}
set prop(value) {
console.log(‘setter: ‘+value);
}
}
以上是关于es6学习笔记的主要内容,如果未能解决你的问题,请参考以下文章