JSON.stringify与JSON.parse区别

console.log(arr)
console.log(JSON.stringify(arr))

 

console.log(JSON.parse(JSON.stringify(arr)))

 
原文地址:https://www.cnblogs.com/hellofangfang/p/13560897.html