This commit is contained in:
Nebel 2022-03-02 15:46:50 +09:00 committed by GitHub
parent 2fccbf6aa1
commit 432dd62cff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
```js ```js
test("正しくJSONをパースできる", () => { test("正しくJSONをパースできる", () => {
// 準備 // 準備
const json = `{"name": "太郎", "age": 20}`; const json = `{ "name": "太郎", "age": 20 }`;
// 実行 // 実行
const parsed = JSON.parse(json); const parsed = JSON.parse(json);