I have this code:
JavaScript
x
14
14
1
var promise1 = new Promise(function(resolve, reject) {
2
setTimeout(() => {
3
console.warn('Elo');
4
resolve('First response');
5
},
6
1000);
7
})
8
9
promise1
10
.then((resp) => {
11
console.warn('First then!');
12
13
});
14
And It resolves promise after one second going to then and console.warning ‘First then!’.
But when I change line:
JavaScript
1
2
1
resolve('First response');
2
for
JavaScript
1
2
1
Promise.resolve('First response');
2
It won’t work. Some idea why ?
Also tried
JavaScript
1
2
1
return Promise.resolve('First response');
2
But it also doesn’t work. I don’t know why.
Can you help me understand it?
Advertisement
Answer
The new Promise
constructor passes a specific function into your callback, which becomes your resolve
parameter. That promise (the one you’re constructing there with new Promise
) can only be resolved by calling that specific resolve
function.
Promise.resolve
simply creates a new “pre-resolved” promise. It does not resolve any existing promise (nor would it have any way of knowing which promise it’s supposed to resolve).