diff --git a/snippets/getURLParameters.md b/snippets/getURLParameters.md index 28a7b50e5..07bc89d45 100644 --- a/snippets/getURLParameters.md +++ b/snippets/getURLParameters.md @@ -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