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.

javascript57_メソッド

Last updated at Posted at 2022-02-18

オブジェクトの属性値はどんなデータ型でもOKです。関数にすることもできます。
image.png
関数はオブジェクトの属性とも言えます。
一つの関数をオブジェクトの属性として保存する場合、
その関数を該当オブジェクトのメソッドと言います。
開発中に、関数内の属性がわからない時はたくさんあります。
その時にはfor in 処理で属性を確認することができます。
構文: for(var変数 in オブジェクト){
}
オブジェクト内に属性の数に応じて、繰り返される回数が決める。
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?