What function will convert a JavaScript object to a JSON string?
JSON.stringify()
JSON.toString()
JSON.serialize()
JSON.text()
Correct Answer : A
What is the MIME type of JSON?
Does JSON support Unicode characters?
What is the value of obj in the following code?
var obj = JSON.parse('{"fruit": "Apple"}', function(k, v) { if (v == "Apple") return "Orange" else return v; });