JSON ファイルを扱う
JSON の記述をする際に次の3つの注意点があります。
- キーをダブルクォーテーションで囲む
- シングルクォーテーションは使えない
- 配列の最後の要素の後ろに ,(カンマ)を入れてはいけない
let json = '{ "name" : "Taro", "age" : 20 }';
console.log(typeof(json)); // string
let encode_data = JSON.parse(json);
console.log(typeof(encode_data)); // object
let decode_data = JSON.stringify(json);
console.log(typeof(decode_data)) // string