2019年1月17日 星期四

【Ch6物件】JSON.stringify & JSON.parse()


▌JSON
  • JSON的JS的子集合subset
  • JSON.stringify() 可以把物件轉成字串
  • JSON.parse() 可以把字串轉為物件
var book={
  author:"Joe",
  age:12
}
console.log(book)
console.log(JSON.stringify(book))

{ author: 'Joe', age: 12 }
{"author":"Joe","age":12}

沒有留言:

張貼留言