Web browser JSON parsing

I did not know that modern browsers have native methods to parse JSON, and encode it!

var my_array = [1,2,'banana',3,4,'apple'];
var json_str = JSON.stringify(my_array);

And vice versa:

var jsObject = JSON.parse("[1, 2, 3, 4 ]");

Pretty handy, and very fast because they're native implementations.

Leave A Reply
All content licensed under the Creative Commons License