Does JSON support Unicode characters?
No, JSON has no support for any kind of character encoding.
No, JSON only has support for UTF-8 characters.
Yes, JSON has support for Unicode characters. Allowing for almost any information in any human language
Yes, only when stored as the key in a ( key : value ) pair.
Correct Answer : C
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; });
What is a JSONStringer used for?
Which statement about the replacer parameter in JSON.stringify() is true?