SOURCE



// 定义类

class Rectangle {
    constructor(height, width) {
        this.height = height;
        this.width = width
    }
    getSize() {
        console.log(this.width + ' ' + this.height)
    }
}

const get = new Rectangle(11, 22);
get.getSize()

console 命令行工具 X clear

                    
>
console