-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallback-hell.js
38 lines (30 loc) · 1.13 KB
/
callback-hell.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
User.findOne({ name: 'daniel' }, function (error, user) {
if (error) {
console.log(error);
} else {
Turnos.find({ user_id: user.id }, function (error2, turnos) {
if (error2) {
console.log(error);
} else {
Prestaciones.findOne({ user_id: user.id }, function (error3, user) {
if (error3) {
console.log(error);
} else {
Prestaciones.findOne({ user_id: user.id }, function (error4, user) {
if (error4) {
console.log(error);
} else {
Prestaciones.findOne({ user_id: user.id }, function (error4, user) {
if (error4) {
console.log(error);
} else {
}
});
}
});
}
});
}
});
}
});