-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallback.js
More file actions
79 lines (63 loc) · 1.42 KB
/
Copy pathcallback.js
File metadata and controls
79 lines (63 loc) · 1.42 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// call back
// task Go to the school (late) , study well (second) , come to a good position (first) - sync method
// task ; give only name after 10 sec()
// // sync means that things happpen one after another in order
function walk (callback){
setTimeout(() => {
console.log("walk the dog");
callback()
},2000);
}
function clean (callback){
setTimeout(()=> {
console.log("clean the car");
},500);
}
walk(clean);
// call back hell
function walk (callback){
setTimeout(() => {
console.log("walk the dog");
callback()
},2000);
}
function clean (callback){
setTimeout(()=> {
console.log("clean the car");
callback()
},500);
}
function trash (callback){
setTimeout(() => {
console.log("put the tarsh out");
},100)
}
walk (()=>{
clean(()=>{
trash(()=>{})
})
})
//task Go to the school (late) , study well (second) , come to a good position (first) - sync method
function school (callback){
setTimeout(()=>{
console.log("Go to school on time");
callback()
},2000)
}
function study(callback){
setTimeout(() => {
console.log("Study well all subjects");
callback()
}, 500)
}
function position(callback){
setTimeout(()=>{
console.log("Come to good postion A grade");
},100)
}
school(()=>{
study(()=>{
position(()=>{
})
})
})