JSON之间,字典和对象的区别

Between JSON, dictionary and the object of the difference?

本文关键字:对象 区别 字典 之间 JSON      更新时间:2023-09-26

区分JSON、字典和对象的区别?

 var json = {"a": 1};
 var object = {'a': 1};
 var dic = ["a", "b", "c"]; 

JSON表示JS对象->与字典相同 (iOS开发?)