Skip to content

Commit

Permalink
fix(js): Typo in JavaScript code block language
Browse files Browse the repository at this point in the history
  • Loading branch information
bsmth authored and mfuji09 committed Feb 2, 2024
1 parent 671398e commit d7e20c9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ x = y;

### 代入と連鎖

```ja
```js
// 以下の変数を想定
// x = 5
// y = 10
// z = 25

x = y // x は 10
x = y = z // x, y そして z はすべて 25
x = y; // x は 10
x = y = z; // x, y そして z はすべて 25
```

## 仕様書
Expand Down

0 comments on commit d7e20c9

Please sign in to comment.