0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

javascript65_構造関数の修正

Last updated at Posted at 2022-02-18

書き方の改善:
image.png
下記をご参照ください。
image.png

しかし、この書き方にも一つの問題があります。
public関数を書くのが非常にリスキーです。実際の開発では、チームが組んで一緒に開発しています。
同じ名前のfun関数を定義してしまった場合、自分が書いた関数が上書きされることがあり得ます。。

そこで、もっと良い書き方としては、クラスとなる対象オブジェクトのprototype属性内に関数を追加します。
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?