javascript – 在类中的函数之前的“get”关键字是什么?

前端之家收集整理的这篇文章主要介绍了javascript – 在类中的函数之前的“get”关键字是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这ES6课程有什么意思? 200的X- 200旗新新200新新新200新新新200新新新200新新200新200新新200新新新200新新200新我该怎么用?
class Polygon {
  constructor(height,width) {
    this.height = height;
    this.width = width;
  }

  get area() {
    return this.calcArea()
  }

  calcArea() {
    return this.height * this.width;
  }
}

解决方法

这意味着该功能属性的吸气剂.

要使用它,只要使用它的名称,就像你的任何其他属性

'use strict'
class Polygon {
  constructor(height,width) {
    this.height = height;
    this.width = width;
  }

  get area() {
    return this.calcArea()
  }

  calcArea() {
    return this.height * this.width;
  }
}

var p = new Polygon(10,20);

alert(p.area);
原文链接:https://www.f2er.com/js/152106.html

猜你在找的JavaScript相关文章