クラス
class
オブジェクト指向言語
によくある機能
型と、それを利用する関数をまとめて定義する
型
に密結合した
モジュール
JavaScript
JSはプロトタイプベースオブジェクト指向だが、クラス記法が後付けで導入された。
code:js
class Square {
constructor(width, height) {
this.width = width;
this.height = height;
}
#area()
{
return this.width * this.height;
}
printArea() {
console.log(this.#area());
}
}