Javascript Modify Url Query String

Jul 27, 2021
let url = new URL("http://www.mydomain.com/?x=1&y=2");// If your expected result is "http://www.mydomain.com/?x=1&y=2&x=99"url.searchParams.append('x', 99);// If your expected result is "http://www.mydomain.com/?x=99&y=2"url.searchParams.set('x', 99);

Remove all keys excepts x

const keys = Array.from(urlObj.searchParams.keys())keys.forEach(key => {  if (key !== 'x') {    urlObj.searchParams.delete(key)  }})

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.