WEBサイト制作に関するTips

javascript » javascript で クラスとほぼ同義のものを定義

// クラスを定義
var *CLASS_NAME* = function (arg) {
// プロパティ
this.*property_name* = *初期値*;

// この領域がコンストラクタ

// メソッド
this.*method_name* = function (arg) {

}
};

// インスタンス生成
*** = new *CLASS_NAME*;
2016-03-15 13:15:15