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 3 years have passed since last update.

JavaScript コールバック関数

Posted at

#コールバック関数とは

コールバック関数とは引数に渡される関数のことである。

const call = (引数名) => {
処理
};

call(関数名);
これによりcallの引数に関数を代入することができます。

const name = () => {
 console.log("Tanaka");
};

const call = (callback) => {
 console.log("コールバック関数を呼び出します")
 callback();
};

call(name);

上記の記述は事前に定義した関数を使用しています。
しかし、引数の中で関数を定義することもできます。

const call = (callback) => {
 console.log("コールバック関数を呼び出します");
 callback();
};

call(() => {
 console.log("Tanaka Yukio");
});

#最後に
初心者ですので、拙い文章や書き方だと思いますが、最後まで見て頂き
ありがとうございました。もし、ご指摘等がございましたらよろしくお願い致します。

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?