A Map in JavaScript can have keys of any type, unlike an object which has keys of type _________.
- any
- varied
- string
- object
Unlike objects, where keys are converted to strings, a Map in JavaScript can have keys of any data type. So, the correct answer is string.
Loading...
Related Quiz
- If you have a Symbol mySymbol, you can access its description using mySymbol.__________.
- In ES6, which method is commonly used as a higher-order function for arrays?
- In a class hierarchy, if a method is overridden, how can you call the method from the parent class?
- Which keyword is used to define a class in ES6?
- In a class, static properties can be accessed using the class name followed by _________.