课程名称:NestJS 入门到实战 前端必学服务端新趋势
课程讲师: Brian
课程内容:
Class类(修饰符、构建函数、接口扩展)
课程收获:
类是用于创建对象的模板。他们用代码封装数据以处理该数据。JS 中的类建立在原型上,但也具有某些语法和语义未与 ES5 类相似语义共享。
class Rectangle {
// constructor
constructor(height, width) {
this.height = height;
this.width = width;
}
// Getter
get area() {
return this.calcArea()
}
// Method
calcArea() {
return this.height * this.width;
}
}
const square = new Rectangle(10, 10);
console.log(square.area);
// 100
谢谢老师,讲的非常细致,很容易懂。这一节学的是Class类(修饰符、构建函数、接口扩展,给以后的学习打下了基础。
原来TS能有这么多种性质,以及对TS有了新的认识,期待后边的学习