Skip to content

Commit

Permalink
Add Quiz: Fullfiled Promise
Browse files Browse the repository at this point in the history
  • Loading branch information
0hhanum committed Aug 16, 2024
1 parent c83ea84 commit acbe319
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions contents/js/fulfilledPromise.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ description:

Promise의 상태 변경과는 '직접적인' 연관은 없습니다. `Fulfilled``Rejected`라면 핸들러 함수를 실행할 뿐이죠.

<mark>다만 중요한 점은 이미 `Fulfilled``Rejected` 상태에서 실행하더라도, 동작 방식은 같아
<mark>
다만 중요한 점은 이미 `Fulfilled``Rejected` 상태에서 실행하더라도, 동작
방식은 같아
</mark>

핸들러를 태스크 큐에 넣어 즉시 실행한다는 점입니다.</mark>
<mark>핸들러를 태스크 큐에 넣어 즉시 실행한다는 점입니다.</mark>

```javascript
const a = Promise.resolve(1);
Expand Down

0 comments on commit acbe319

Please sign in to comment.