let b = '{"a":true, "b":2}'
let cc = JSON.parse(b)
console.log(cc.count);
21:54:20.778/D: undefined
const json = '{"result":true, "count":2}';
const obj = JSON.parse(json);
console.log(obj.count);
21:54:20.780/D: 2
为什么同样的写法第一种找不到长度第二种可以?是哪个地方的问题