When using Symbols for object properties, they are not included in __________ enumerations.

  • for...in'
  • forEach'
  • Object.keys()'
  • Object.getOwnPropertySymbols()'
Object properties with Symbols as keys are not included in for...in enumerations. To get all property keys (including Symbols), you can use Object.getOwnPropertySymbols() in addition to other methods. Example: const symbols = Object.getOwnPropertySymbols(myObject);
Add your answer
Loading...

Leave a comment

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