博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSON中的[]和{}
阅读量:6707 次
发布时间:2019-06-25

本文共 326 字,大约阅读时间需要 1 分钟。

[]是Array

{}是Object

[]的key是int,{}的key是string

var a= Array(); 

a[a.length] = '3'; 
a[a.length] = '4'; 
a[a.length] = '5'; 
a toJSON 后 ='["3", "4", "5"]' 
var a = new Object(); 
a['test1'] = '3'; 
a['test2'] = '4'; 
a['test3'] = '5'; 
a toJSON 后 = '{"test1":"3", "test2":"4", "test3":"5"}' 

转载于:https://www.cnblogs.com/ecosu/p/4305583.html

你可能感兴趣的文章
java多线程之内存可见性
查看>>
vue打包报错UnhandledPromiseRejectionWarning: postcss-svgo: Error in parsing SVG的解决方案
查看>>
Angular注册Provider
查看>>
融合RocksDB, Pregel, Fault-Tolerent Foxx & Satellite Collections 怎样使数据库性能提升35%?...
查看>>
js合并单元格(相同)
查看>>
springboot(五):spring data jpa的使用
查看>>
C++17中那些值得关注的特性
查看>>
Hello, World!
查看>>
linux复盘:集群构架基础keepalived+nginx
查看>>
gitlab-runner注册runner
查看>>
python数据类型
查看>>
实时监听的几种方法
查看>>
Spark(一) 架构及生态
查看>>
系统目录结构与ls,alias命令
查看>>
20.20 告警系统主脚本
查看>>
SSM 五:Spring核心概念
查看>>
AttributeError: module 'sys' has no attribute 'setdefaultencoding'
查看>>
压缩打包介绍 、gzip压缩工具、 bzip2压缩工具 、xz压缩工具
查看>>
今天就来给大家聊一下为什么不建议你们自学。
查看>>
区块链100讲:不做码农做矿工,该怎么和爹妈解释
查看>>