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

高階関数

Last updated at Posted at 2020-01-14

高階関数とは関数を引数、戻り値として扱う関数
…よくわからないので、とりあえずやってみました!

const test= (text1) => (text2) => console.log(`${text1} ${text2}`)
test(111)(222); // 111222

(↑可読性の観点からあまりおすすめしない)

やってみた
スクリーンショット 2019-12-08 4.11.24.png

引数を一個ずつ入れる書き方

const test4 = test(11111); 

test4(22222); //11111 22222

やってみた
スクリーンショット 2019-12-08 4.32.50.png

基礎を勉強中なので基本に戻って…
アロー関数の書き方を使わないでやってみた

function test(a, b) {
 console.log(`${a}${b}`)
}
test(1, 2); // 1と2

スクリーンショット 2019-12-08 4.37.43.png

もっと基礎に戻って書くと

function test(text1) {
    return function (text2) {
        console.log(`${text1}${text2}`);
    }
}

やってみた
スクリーンショット 2019-12-08 4.46.50.png

引数同士で計算もできる!

function test(a, b) {
 console.log(a + b);
}
// a + b の結果が返ってくる

スクリーンショット 2019-12-08 4.39.39.png

1
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
1
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?