method then
| 1 | class Promise | 
| 1.1 | (Promise) method then | 
Documentation for method then assembled from the following types:
class Promise
From Promise
(Promise) method then
method then(Promise: )
Schedules a piece of code to be run after the invocant has been kept or broken, and returns a new promise for this computation. In other words, creates a chained promise.
my = Promise.in(2);my = .then();say .result; # 2 seconds are over# result