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.

javascript61_thisの使い方

Last updated at Posted at 2022-02-18

ブラウザが関数を呼び出す度に、関数内部に一つの隠している引数を渡します。
この引数はthisです。thisはオブジェクトを指しています。

オブジェクトとは、関数実行時のオブジェクトになります。
関数の呼び出し方の違いによって、thisが指しているオブジェクトが違ってきます。

1 関数の形で呼び出す時、thisはwindowになります。
2 メソッドの形式で呼び出す時に、thisはメソッドを使うする対象となる。
image.png
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?