We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents febe6b8 + 62bfce9 commit f6280baCopy full SHA for f6280ba
docs/playground/ko/JavaScript/Helping with JavaScript/Quick Fixes.ts
@@ -0,0 +1,16 @@
1
+// TypeScript는 흔한 실수에 대한
2
+// 빠른 수정 추천을 제공합니다.
3
+// 프롬프트는 이러한 추천에 따라 에디터에 나타납니다.
4
+
5
+// 예를 들어 TypeScript는
6
+// 타입의 오탈자에 대한 빠른 수정을 제공합니다:
7
8
+const eulersNumber = 2.7182818284;
9
+eulersNumber.toStrang();
10
+// ^______^ - 빛나는 전구 아이콘을 보기 위해 이것을 선택하세요
11
12
+class ExampleClass {
13
+ method() {
14
+ this.notDeclared = 10;
15
+ }
16
+}
0 commit comments