2015-06-22 14:53:19 +00:00
|
|
|
{
|
|
|
|
"string": "lorem ipsum",
|
|
|
|
"utf string": "lorem ipsum",
|
|
|
|
"utf-8 string": "あいうえお",
|
|
|
|
"surrogate string": "lorem𝄞ipsum𝍧lorem",
|
|
|
|
"positive one": 1,
|
|
|
|
"negative one": -1,
|
2017-09-16 15:07:43 +00:00
|
|
|
"pi": 3.1400000000000001,
|
|
|
|
"hard to parse number": -0.00031399999999999999,
|
|
|
|
"big int": 2147483647,
|
|
|
|
"big uint": 4294967295,
|
2015-06-22 14:53:19 +00:00
|
|
|
"boolean true": true,
|
|
|
|
"boolean false": false,
|
|
|
|
"null": null,
|
|
|
|
"string array": [
|
|
|
|
"lorem",
|
|
|
|
"ipsum"
|
|
|
|
],
|
|
|
|
"x^2 array": [
|
|
|
|
0,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
9,
|
|
|
|
16,
|
|
|
|
25,
|
|
|
|
36,
|
|
|
|
49,
|
|
|
|
64,
|
|
|
|
81,
|
|
|
|
100
|
|
|
|
],
|
2015-11-08 16:34:34 +00:00
|
|
|
"\/*": null,
|
2015-06-22 14:53:19 +00:00
|
|
|
"object": {
|
|
|
|
"nested string": "str",
|
|
|
|
"nested true": true,
|
|
|
|
"nested false": false,
|
|
|
|
"nested null": null,
|
|
|
|
"nested number": 123,
|
|
|
|
"nested array": [
|
|
|
|
"lorem",
|
|
|
|
"ipsum"
|
|
|
|
]
|
|
|
|
},
|
2015-11-08 16:34:34 +00:00
|
|
|
"*\/": null,
|
|
|
|
"\/**\/": "comment",
|
|
|
|
"\/\/": "comment",
|
|
|
|
"url": "https:\/\/www.example.com\/search?q=12345",
|
|
|
|
"escaped chars": "\" \\ \/",
|
2015-06-22 14:53:19 +00:00
|
|
|
"empty object": {},
|
|
|
|
"empty array": []
|
|
|
|
}
|