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

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.

Leave a Comment