79232084

Date: 2024-11-27 22:45:53
Score: 0.5
Natty:
Report link

To change a query parameter:

const url = new URL(location);
url.searchParams.set("foo", "bar");
history.pushState({}, "", url);

https://developer.mozilla.org/en-US/docs/Web/API/History/pushState#change_a_query_parameter

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Constantin De La Roche