タグ

Javascriptとprototypeに関するsilemのブックマーク (2)

  • JavaScriptの継承について

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

    JavaScriptの継承について
  • JavaScript.com | クラス - 継承

    関数(クラス)のprototypeプロパティ 全ての関数オブジェクトは prototypeというプロパティを持っています。 この prototypeプロパティはどういった事ができるか。 以下のコードを見てください。 function Dog(){} Dog.prototype.bow = function(){ alert('ワン') }; var d = new Dog(); d.bow(); //-> ワンと表示 Dog関数(クラス)を作成し、この関数の prototype プロパティの プロパティbowに関数をセットしています。 そしてnewにより Dog オブジェクトを作成し、そのオブジェクトの bow を呼ぶと prototype のプロパティであるbowにアクセスできましたね。 全てのオブジェクトはクラス(関数)のprototypeに暗黙の参照を持ち、 オブジェクトのプロパティ

  • 1