Skip to content

Commit 7993fd8

Browse files
authored
Merge pull request #1 from mikayel00/fix-json-article
Update article.md
2 parents 25e83d0 + 583462a commit 7993fd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/05-data-types/12-json/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ JSON.stringify(meetup); // Ошибка: Преобразование цикли
177177
Полный синтаксис `JSON.stringify`:
178178

179179
```js
180-
let json = JSON.stringify(value, [replacer, space])
180+
let json = JSON.stringify(value [, replacer, space])
181181
```
182182

183183
value
@@ -404,7 +404,7 @@ alert( JSON.stringify(meetup) );
404404

405405
Синтаксис:
406406
```js
407-
let value = JSON.parse(str, [reviver]);
407+
let value = JSON.parse(str [, reviver]);
408408
```
409409

410410
str

0 commit comments

Comments
 (0)