From 2618d227ea988a86ac80eb4be5a8a6cb7fe771ef Mon Sep 17 00:00:00 2001 From: Travis Rollins Date: Tue, 21 May 2024 15:12:27 -0700 Subject: [PATCH] Add note to TypeScript lesson to use TypeScript playground instead of Repl --- lessons/module-2/introduction-to-typescript.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lessons/module-2/introduction-to-typescript.md b/lessons/module-2/introduction-to-typescript.md index 11502433..2909befa 100644 --- a/lessons/module-2/introduction-to-typescript.md +++ b/lessons/module-2/introduction-to-typescript.md @@ -33,6 +33,9 @@ JavaScript is dynamically typed, meaning variable types are determined at runtim
### Example of JavaScript vs TypeScript +**Note:** *For all of today's exercises, we'll use [TypeScript Playground](https://www.typescriptlang.org/playground/){:target="_blank"}. This has TypeScript already incorporated into it and runs significantly better than using Repl.* + + **JavaScript:** ```js let greeting = "Hello, world!";