kimhongsu

Results 5 issues of kimhongsu

p.252 **콜백 함수를 받아서 동작하게 만든다면 위의 방법과 거의 동일하게 구현이 가능합니다.** --- 라고 설명해주셨는데, 콜백을 이용해서 어떻게 구현해야할지 모르겠습니다. 클로저를 이용하려면 함수를 리턴하는 패턴일거고, 리턴 되는 함수와 매칭된 변수들이...

## 원문 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Promise/resolve ![Screenshot from 2021-06-07 15-39-44](https://user-images.githubusercontent.com/6312462/120970743-c8a9c580-c7a6-11eb-99ee-2ed900be7946.png) ![Screenshot from 2021-06-07 15-40-05](https://user-images.githubusercontent.com/6312462/120970702-bd569a00-c7a6-11eb-8fab-37f4e7f68e86.png) ## 오타수정 Promise.resolve(value) 메서드는 주어진 값으로 이행하는 Promise.then 객체를 반환합니다. Promise.resolve(value) 메서드는 주어진 값으로 이행된 Promise 객체를 반환합니다. 1....

## 원문 ![image](https://user-images.githubusercontent.com/6312462/120883211-d2042800-c616-11eb-99b4-327b2e06ce83.png) .then(result => result와 err 보여줌 => error 보여줌) ## 오타수정 .then(result => result 보여줌, err => error 보여줌) ## 이슈 ![image](https://user-images.githubusercontent.com/6312462/120883239-00820300-c617-11eb-8199-5a6522251c7c.png) 원문과 비교하여 잘못된 코드를 수정하였습니다. .then()은...

Firefox에서 Shift+Space로 한영 전환이 안됩니다. 문제 발생 환경: Ubuntu 21.10, Ubuntu 22.04 Wayland 세벌식 390 Chrome 등 다른 브라우저에서는 한영 전환이 잘 됩니다. 추가로 20.04 X11 환경에서는 Shift+Space로 한영 전환이...

T-Document
D-Easy
Good first issue
Duplicate

* Relative path support in CLI * Let's convert the user input paths to the absolute paths * **As-Is**: We had to use `$PWD` to point out the current directory...