Important Properties Of Promise Methods
.then()
returns a value: p gets fulfilled with the returned value as its value.
doesn't return anything: p gets fulfilled with undefined.
throws an error: p gets rejected with the thrown error as its value.
returns an already fulfilled promise: p...
jeevanhenrydsouza.hashnode.dev3 min read