How can I read values from a GET parameter?

var url_string = "http://www.example.com/t.html?a=1&b=3&c=m2-m3-m4"; //window.location.href
var url = new URL(url_string);
var c = url.searchParams.get("c");
console.log(c);
Without cookies
This website does not use cookies or tracking. More information can be found in the privacy policy.