Update getURLParemeters

prototype
This commit is contained in:
Angelos Chalaris
2020-05-03 12:20:31 +03:00
parent 5086013796
commit ec175961d6

View File

@ -5,7 +5,7 @@ tags: browser,string,url,intermediate
Returns an object containing the parameters of the current URL.
Use `String.match()` with an appropriate regular expression to get all key-value pairs, `Array.prototype.reduce()` to map and combine them into a single object.
Use `String.prototype.match()` with an appropriate regular expression to get all key-value pairs, `Array.prototype.reduce()` to map and combine them into a single object.
Pass `location.search` as the argument to apply to the current `url`.
```js