-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-promise.js
46 lines (37 loc) · 1.01 KB
/
example-promise.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
// function getTempPromise(location){
// return new Promise(function(resolve, reject){
// resolve(79);
// reject('City not found')
// });
// }
//
// getTempPromise('Philadelphia').then(function(temp){
// console.log('Promise success', temp);
// }, function(err) {
// console.log('promise error', err);
// });
//Challenge Area
function addPromise (a, b) {
return new Promise(function(resolve, reject){
if(typeof a === 'number' && typeof b === 'number'){
resolve(a+b);
} else {
reject('A and b need to be numbers');
}
});
}
addPromise(2, 4).then(function(sum){
console.log('success', sum);
}, function(err) {
console.log('error', err);
});
addPromise('sarah', 4).then(function(sum){
console.log('this should not show up');
}, function(err) {
console.log('this should appear', err);
});
//if they are both numbers it should resolve the sum
//if one or more is not a number or is not given
//call with 2 numbers
//call with 1 number and a string
//if (typeof 7 === number)