15 lines
331 B
Plaintext
15 lines
331 B
Plaintext
prompt$ jsish
|
|
Jsish interactive: see 'help [cmd]'
|
|
# var data = JSON.parse('{ "foo": 1, "bar": [10, "apples"] }');
|
|
variable
|
|
# data
|
|
{ bar:[ 10, "apples" ], foo:1 }
|
|
|
|
# var sample = { blue: [1,2], ocean: "water" };
|
|
variable
|
|
# sample
|
|
{ blue:[ 1, 2 ], ocean:"water" }
|
|
|
|
# puts(JSON.stringify(sample))
|
|
{ "blue":[ 1, 2 ], "ocean":"water" }
|