Why does JSON.stringify return empty object notation "{}" for an object that seems to have properties?

Mathias S picture Mathias S · Jul 23, 2016 · Viewed 12.3k times · Source

The following example shows that JSON.stringify() returns the string "{}" for SpeechSynthesisVoice objects:

var voiceObject = window.speechSynthesis.getVoices()[0];
JSON.stringify(voiceObject); //returns "{}"?

Complete example: JSFiddle

Why does it return "{}" and not something like "{voiceURI: "Google Deutsch", name: "Google Deutsch", lang: "de-DE", localService: false, default: false}"?

Note that the above example does not work for chrome or iOS; it is targeted for Mozilla Firefox.

Answer

T.J. Crowder picture T.J. Crowder · Jul 23, 2016

JSON.stringify includes an object's own, enumerable properties (spec) that have values that aren't functions or undefined (as JSON doesn't have those), leaving out ones it inherits from its prototype, any that are defined as non-enumerable, and any whose value is a function reference or undefined.

So clearly, the object you get back from getVoices()[0] has no own, enumerable properties that can be represented in JSON. All of their properties must be either inherited, defined as non-enumerable, or (though it's probably not the case here) functions or undefined.