Answers for "get url parameter anr"

9

js get url parameter

const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const code = urlParams.get('code')
Posted by: Guest on October-18-2020
1

get parameters from url

www.test.com/t.html?a=1&b=3&c=m2-m3-m4-m5
Posted by: Guest on July-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language