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}

沒有留言:

張貼留言

【JavaScript】用物件Mapping的方法

If的寫法 我們希望當變數是a時就回傳1,變數是b就回傳2,變數是c就會回傳3,一般寫法就是用if,但是這樣會很冗 ​ // IF style var word if(word == 'a'){ word = 1 } else if...