I have the following code:
const PENDING = 0; const RESOLVE = 1; const REJECT = 2; class simplePromise { constructor(resolveFn) { this.val = 1; this.s