박찬수

JSON parsing commit

1 +let sampleJson = '{"id":"2018102191", "name":"Park"}';
2 +
3 +let jJson = JSON.parse(sampleJson);
4 +
5 +console.log(jJson.id);
6 +console.log(jJson.name);
...\ No newline at end of file ...\ No newline at end of file