From ec175961d67aa15d7fd477f03fc33d3e893adfdb Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 3 May 2020 12:20:31 +0300 Subject: [PATCH] Update getURLParemeters prototype --- snippets/getURLParameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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