DEV Community

Discussion on: Switch is ok

Collapse
 
jonrandy profile image
Jon Randy 🎖️ • Edited

Your example with the object literal is overly long:

const hero = (x = "default") => ({
    "DC": "Batman",
    "Marvel" : "Wolverine",
    "default": "Spiderman"
}[x])
Enter fullscreen mode Exit fullscreen mode
Collapse
 
macsikora profile image
Pragmatic Maciej

I have waited for that 😉