clone of github.com/decent-newsroom/newsroom
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Empty Array |
|
|
|
[ ] |
|
|
|
==> |
|
|
|
JsonText(Array) |
|
|
|
# Array With One Value |
|
|
|
["One is the loneliest number"] |
|
|
|
==> |
|
|
|
JsonText(Array(String)) |
|
|
|
# Array With Multiple Values |
|
|
|
[ |
|
"The more the merrier", |
|
1e5, |
|
true, |
|
{ }, |
|
["I'm", "nested"] |
|
] |
|
|
|
==> |
|
|
|
JsonText(Array( |
|
String, |
|
Number, |
|
True, |
|
Object, |
|
Array(String,String)))
|
|
|