let str="[\"1\"]";
let toObj=JSON.parse(str);
console.log("类型为"+typeof(toObj)+"值为:"+toObj);
let toJson=JSON.stringify(toObj);
console.log("类型为"+typeof(toJson)+"值为:"+toJson);
运行结果
> 类型为object值为:1
> 类型为string值为:["1"]
>
let str="[\"1\"]";
let toObj=JSON.parse(str);
console.log("类型为"+typeof(toObj)+"值为:"+toObj);
let toJson=JSON.stringify(toObj);
console.log("类型为"+typeof(toJson)+"值为:"+toJson);
运行结果
> 类型为object值为:1
> 类型为string值为:["1"]
>