Fixed typo in article

Fixed typo in JSON.stringify section of the article
This commit is contained in:
Fredrick Mgbeoma 2017-09-05 16:58:50 +01:00 committed by GitHub
parent 144a2fe6c3
commit c1d419d140

View file

@ -36,7 +36,7 @@ JavaScript provides methods:
- `JSON.stringify` to convert objects into JSON.
- `JSON.parse` to convert JSON back into an object.
For instance, here's we `JSON.stringify` a student:
For instance, here we `JSON.stringify` a student:
```js run
let student = {
name: 'John',