JSON
JavaScript Object Notation
用途
hr.icon
JSON返すAPI
無料
10人分のデータあり
Javascript処理
JSON.stringify(obj)
使用例
形統一
JSON.parse(String)
JSON形式の文字列をJSONオブジェクトに変換
code:json.js
const fruit ={
place:'yamanashi',
cost:100,
name:'apple'
}
const jsonStr = JSON.stringify(fruit)
//{"place":'yamanashi',"cost":100,"name":'apple'}
console.log(JSON.parse(jsonStr))//fruit{}
参考