What is the result of using a Symbol as a key in a JSON object when using JSON.stringify?

  • It serializes the symbol key along with its associated value.
  • It ignores the symbol key and only serializes other enumerable properties.
  • It throws an error since symbols cannot be used as keys in JSON objects.
  • It converts the symbol key to a string and serializes it.
When using JSON.stringify, symbols are ignored, and only other enumerable properties are serialized. Symbols are not convertible to strings in this context.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *