Skip to content

Commit

Permalink
Fix small issue with console log prints
Browse files Browse the repository at this point in the history
  • Loading branch information
vejol committed Jan 11, 2025
1 parent 1810229 commit db0c07f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/content/1/en/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]

const [first, second, ...rest] = t

console.log(first, second) // 1, 2 is printed
console.log(first, second) // 1 2 is printed
console.log(rest) // [3, 4, 5] is printed
```

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/es/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]

const [first, second, ...rest] = t

console.log(first, second) // se imprime 1, 2
console.log(first, second) // se imprime 1 2
console.log(rest) // se imprime [3, 4 ,5]
```

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/fi/osa1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const t = [1, 2, 3, 4, 5]

const [first, second, ...rest] = t

console.log(first, second) // tulostuu 1, 2
console.log(first, second) // tulostuu 1 2
console.log(rest) // tulostuu [3, 4 ,5]
```

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/fr/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const t = [1, 2, 3, 4, 5]

const [first, second, ...rest] = t

console.log(first, second) // 1, 2 est affiché
console.log(first, second) // 1 2 est affiché
console.log(rest) // [3, 4, 5] est affiché
```

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/ptbr/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]

const [primeiro, segundo, ...resto] = t

console.log(primeiro, segundo) // 1, 2 é impresso
console.log(primeiro, segundo) // 1 2 é impresso
console.log(resto) // [3, 4, 5] é impresso
```

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/zh/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const t = [1, 2, 3, 4, 5]

const [first, second, ...rest] = t

console.log(first, second) // 1, 2 is printed
console.log(first, second) // 1 2 is printed
console.log(rest) // [3, 4, 5] is printed
```

Expand Down

0 comments on commit db0c07f

Please sign in to comment.