How to check if query parameters name exists in URL with JavaScript

1 Answer

0 votes
const URLParams= "?client=firefox-b-f&biw=324";

const params = new URLSearchParams(URLParams)

console.log(params.has("client"));
console.log(params.has("id"));
  


    
/*
run:
    
true
false
    
*/

 



answered Feb 24, 2021 by avibootz
edited Feb 24, 2021 by avibootz

Related questions

1 answer 179 views
1 answer 243 views
1 answer 122 views
2 answers 164 views
3 answers 258 views
1 answer 168 views
168 views asked Aug 7, 2020 by avibootz
1 answer 118 views
...