how to get params of url in js code example
Example 1: js get url parameter
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const code = urlParams.get('code')
Example 2: get parameters from url
www.test.com/t.html?a=1&b=3&c=m2-m3-m4-m5