Challenge 📝
Resources 📚
A string url is given. Return the parameter values in an array. The keys can be ignored.
url
Examples:
https://jscodebox.com/test.xml?id=3&value=file => [3, 'file']
#JavaScript Strings
Medium
unsolved