-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path33_callback_functions_higher_order.js
51 lines (37 loc) · 1.09 KB
/
33_callback_functions_higher_order.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
Callback function
passed to another function as an argument &
executed inside that function
Higher order function
Accepts another function as an argument
or return another function as a result
*/
// this is a callbackfunction
function morning(name){
return `Good morning ${name}`;
}
function afternoon(name){
return `Good afternoon ${name}`;
}
// higherorder function
function greet(name, cb){
const myName='Nakamura Ekuichi';
// cb is argument and executed here
//and then will resulted by this function as higher older function
console.log(`${cb(name)} my name is ${myName}`);
}
// remember callback function not invoke morning()
//cz already exist in higher older function
greet('Daisuke', morning);
greet('Miwa', afternoon);
// function greetMorning(name){
// const myName = 'john';
// console.log(`Good morning ${name}, my name is ${myName}`);
// }
// function greetAfternoon(name){
// const myName = 'susan';
// console.log(`Good afternoon ${name}, my name is ${myName}`);
// }
// // run function
// greetMorning('bobo');
// greetAfternoon('peter');