Alexander Pushkov
Results
171
comments of
Alexander Pushkov
The syntax has changed quite a lot apparently 👀 Here’s one more use case: ```jsx const routes = { "/": "home", "/:username": "profile", }; const urls = Object.fromEntries(Object.entries(routes).map(a => a.reverse()));...