get the url whit the query code example
Example 1: js get query param
const queryString = window.location.search;
const parameters = new URLSearchParams(queryString);
const value = parameters.get('key');
Example 2: get parameters from url
www.test.com/t.html?a=1&b=3&c=m2-m3-m4-m5