The Promise.resolve
class method returns a promise that is instantiated as resolved with a value you can specify:
var promise = Promise.resolve(100);
The Promise.resolve
class method returns a promise that is instantiated as resolved with a value you can specify:
var promise = Promise.resolve(100);