We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b1ae3 commit 215c3d3Copy full SHA for 215c3d3
docs/playground/ko/JavaScript/Functions with JavaScript/Typing Functions.ts
@@ -23,8 +23,8 @@ const callbackWithIndex = (callback: (i: number) => void) => {
23
callback(i);
24
};
25
26
-// 함수 인터페이스를 임베딩하는 것은
27
-// 모든 화살표와 함께 읽기가 조금 어려울 수 있습니다.
+// 함수 인터페이스를 임베딩하면
+// 화살표 때문에 읽기 어려울 수 있습니다.
28
// 타입 별칭을 사용하여 함수 매개변수에 이름을 지정하게 합니다.
29
30
type NumberCallback = (i: number) => void;
0 commit comments