Skip to content

Commit 930929f

Browse files
committed
remove unnecessary note
1 parent 66d0372 commit 930929f

File tree

17 files changed

+0
-34
lines changed

17 files changed

+0
-34
lines changed

exercises/01.objects/01.problem.object-literals/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ const obj: { prop1: Type1; prop2: Type2 } = {
1919
```
2020

2121
📜 [TypeScript Handbook - Object Types](https://www.typescriptlang.org/docs/handbook/2/objects.html)
22-
23-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/01.objects/02.problem.property-access/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,3 @@ function describe(product: { name: string; price: number }): string {
2828
```
2929

3030
📜 [MDN - Property accessors](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors)
31-
32-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/01.objects/03.problem.optional-properties/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,3 @@ console.log(user.bio?.toUpperCase()) // Returns undefined if bio is undefined
3030
```
3131

3232
📜 [TypeScript Handbook - Optional Properties](https://www.typescriptlang.org/docs/handbook/2/objects.html#optional-properties)
33-
34-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/02.arrays/01.problem.array-basics/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ items.length // Number of elements
2020
```
2121

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

exercises/02.arrays/02.problem.array-types/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,3 @@ for (let i = 0; i < items.length; i++) {
4040
</callout-info>
4141

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

exercises/02.arrays/03.problem.iteration/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,3 @@ for (const product of products) {
3030
```
3131

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

exercises/03.spread-rest/01.problem.object-spread/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,3 @@ const updated = { ...original, propertyToChange: newValue }
4747
```
4848

4949
📜 [MDN - Spread Syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)
50-
51-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/03.spread-rest/02.problem.rest-parameters/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,3 @@ function myFunc(...items: Array<string>): void {
7171
```
7272

7373
📜 [MDN - Rest Parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters)
74-
75-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/04.destructuring/01.problem.object-destructuring/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,3 @@ const { id: productId, description = 'No description' } = product
4444
```
4545

4646
📜 [MDN - Destructuring Assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
47-
48-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

exercises/04.destructuring/02.problem.array-destructuring/README.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,3 @@ const [first, ...rest]: [number, ...Array<number>] = numbers
5454
```
5555

5656
📜 [MDN - Destructuring Assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#array_destructuring)
57-
58-
🐨 Once you've completed the exercise, run `node index.ts` in the playground to test your work!

0 commit comments

Comments
 (0)