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 ae89677 commit 17ea222Copy full SHA for 17ea222
docs/playground/fr/3-7/Fixits/Const to let.ts
@@ -0,0 +1,12 @@
1
+//// { compiler: { }, order: 1 }
2
+
3
+// New to 3.7 is the ability to quickly convert
4
+// a const variable to a let when the value
5
+// has been re-assigned.
6
7
+// You can try this by highlighting the below error
8
+// and choosing to run the quick-fix.
9
10
+const displayName = "Andrew";
11
12
+displayName = "Andrea";
0 commit comments