こんにちは。きんくまです。 今回はオブジェクト指向の書き方についてです。 ⇒今回の作成物です ⇒html一式はこちら ■ex1 単純なオブジェクト指向 クラス //----------------------------- // ClassA //----------------------------- var ClassA = function(){ //プロパティ this.prop1 = 'Hello'; this.prop2 = 'World'; //メソッド this.method1 = function(){ var message = this.prop1 + ' ' +this.prop2; alert(message); }; this.method2 = function(){ alert('method2'); } } //クラスプロパティ、クラスメソッド Clas