Skip to content

Commit a809993

Browse files
committed
remove unnecessary note
1 parent 850ff91 commit a809993

File tree

15 files changed

+0
-42
lines changed

15 files changed

+0
-42
lines changed

exercises/01.expressions-and-output/README.mdx

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,3 @@ console.log('Hello' + ' World') // Prints: Hello World
5151

5252
In this exercise, you'll learn to use `console.log()` to output different types
5353
of expressions.
54-
55-
## JSON.stringify
56-
57-
Some tests in this workshop read structured values from the terminal output.
58-
To do that, we use `JSON.stringify(...)` to convert objects into strings that
59-
can be printed and parsed reliably.
60-
61-
```ts
62-
const result = { greeting: 'Hello', count: 3 }
63-
console.log('Results:', JSON.stringify(result))
64-
```
65-
66-
`JSON.stringify` turns JavaScript values into a JSON string so the test can
67-
compare exact results.

exercises/02.variables/01.problem.let-and-const/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ const API_URL = 'https://api.example.com'
1818
```
1919

2020
📜 [MDN - const](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const)
21-
22-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/02.variables/02.problem.reassignment-vs-mutation/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ obj.newProp = value // Add a new property
3636
```
3737

3838
📜 [MDN - Working with Objects](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Working_with_Objects)
39-
40-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/03.primitive-types/01.problem.numbers-and-strings/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,3 @@ const message = `Hello, ${name}!`
2424
```
2525

2626
📜 [TypeScript Handbook - Everyday Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html)
27-
28-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/03.primitive-types/02.problem.booleans-and-comparisons/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ const opposite = !a // inverts the boolean
2727
```
2828

2929
📜 [MDN - Comparison Operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#comparison_operators)
30-
31-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/03.primitive-types/03.problem.null-and-undefined/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,3 @@ console.log(value !== undefined ? 'Has value: ' + value : 'No value')
4141
📜 [MDN - null](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/null)
4242

4343
📜 [MDN - undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined)
44-
45-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/03.primitive-types/04.problem.bigint-and-symbol/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ const big: bigint = 123456789012345678901234567890n
5050

5151
📜 [MDN - BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt)
5252
📜 [MDN - Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol)
53-
54-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/04.control-flow/01.problem.conditionals/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@ if (score >= 90) {
2525
```
2626

2727
📜 [MDN - if...else](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else)
28-
29-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/04.control-flow/03.problem.loops/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,3 @@ for (let row = 1; row <= 5; row++) {
4141
📜 [MDN - for statement](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for)
4242

4343
📜 [MDN - for...of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) (an alternative loop syntax you'll see in the wild)
44-
45-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/05.functions/01.problem.parameters-and-returns/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ dollars.toFixed(2) // "19.99"
2727
```
2828

2929
📜 [TypeScript Handbook - More on Functions](https://www.typescriptlang.org/docs/handbook/2/functions.html)
30-
31-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

0 commit comments

Comments
 (0)