You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/documentation/copy/en/handbook-v2/Basics.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -362,7 +362,7 @@ greet("Maddison", new Date());
362
362
Notice two things here:
363
363
364
364
1. Our `person` and `date` parameters no longer have type annotations.
365
-
2. Our "template string" - that string that used backticks (the `` ` `` character) - was converted to plain strings with concatenations (`+`).
365
+
2. Our "template string" - that string that used backticks (the `` ` `` character) - was converted to plain strings with concatenations.
366
366
367
367
More on that second point later, but let's now focus on that first point.
368
368
Type annotations aren't part of JavaScript (or ECMAScript to be pedantic), so there really aren't any browsers or other runtimes that can just run TypeScript unmodified.
0 commit comments