-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCallbacks1.js
45 lines (34 loc) · 878 Bytes
/
Callbacks1.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
setTimeout(() => {
console.log('Two seconds are up!');
}, 2000);
const names = ['Lakshman', 'Gope', 'Proddut'];
const shortNames = names.filter((name) => {
return name.length <= 4;
});
const geocode = (address, callback) => {
setTimeout(() => {
const data = {
latitude: 0,
longitude: 0
}
callback(data);
}, 2000);
};
geocode('Dhaka', (data) => {
console.log(data);
});
// Challenge
// Goal: Mess around with the callback pattern
//
// 1. Define an add function that accepts the correct arguments
// 2. Use setTimeout to simulate a 2 second delay
// 3. After 2 seconds are up, call the callback function with the sum
// 4. Test your work!
const add = (a, b, callback) => {
setTimeout(() => {
callback(a + b);
}, 2000);
}
add(1, 4, (sum) => {
console.log(sum) // Should print: 5
})