-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Thompson] 5번째 번역 #15
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
정말 고생하셨습니다. !!!
약간 애매한 것들이 많아 저는 번역하는데 애를 썼는데 정기님은 잘 해내셨군요 :)
다시 한번 수고하셨습니다.
## 끝에서부터 찾아보세요. | ||
|
||
Two functions are involved in **findLast** / **findLastIndex** | ||
두 함수는 **findLast**와 **findLastIndex**와 관련되어 있습니다(??? 여기를 어떻게 번역할 지 모르겠슴다) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
두 함수는 **findLast**와 **findLastIndex**와 관련되어 있습니다(??? 여기를 어떻게 번역할 지 모르겠슴다) | |
두 함수는 findLast / findLastIndex와 관련이 있습니다. |
저도 그냥 지칭하는 말 같아서 정기님과 유사하게 다음과 같이 해석을 하였는데 애매한 부분이 많은 것 같습니다.
|
||
## 예외 체인 | ||
|
||
예제를 바로 살펴보면, err0.cause를 통해 err1을 얻을 수 있습니다. 만약 이 예외가 여러 번 발생한다면, 이것은 err1.cause.cause... 와 같습니다. 당신은 관련된 모든 예외를 얻을 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예제를 바로 살펴보면, err0.cause를 통해 err1을 얻을 수 있습니다. 만약 이 예외가 여러 번 발생한다면, 이것은 err1.cause.cause... 와 같습니다. 당신은 관련된 모든 예외를 얻을 수 있습니다. | |
예제를 바로 살펴보면, err0.cause를 통해 err1을 얻을 수 있습니다. 만약 이 예외가 여러 번 발생한다면, err1.cause.cause... 와 같이 모든 예외를 얻을 수 있습니다. |
정기님 표현도 좋은 데 줄이면 읽기 좋아보여서 제안해 봅니다. :)
); | ||
``` | ||
### Promise.allSettled | ||
들어온 프로미스가 reject 또는 resolve 됐는 지와 상관 없이, then으로 갑니다. (? it is rolled up to then 을 뭐라고 해석해야 할까요...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
들어온 프로미스가 reject 또는 resolve 됐는 지와 상관 없이, then으로 갑니다. (? it is rolled up to then 을 뭐라고 해석해야 할까요...) | |
입력된 promise가 reject인지 resolve인지 상관없이 then까지 롤업됩니다. |
.allSettled
는 여러 promise들을 병렬처리하되, 하나의 promise가 reject되도 then에서 값을 얻을 수 있습니다.
그래서 롤업이 그냥 간다? 라는 의미로 저는 사용했고 롤업된다라고 작성했습니다.
이 부분은 정기님 해석도 좋은 것 같아 의미만 맞으면 되지 않을까요?
No description provided.