Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

140
Views
How to get a domain variable value

so I have a question, which maybe it's a little ez, but... I don't know hehe, so, how do you get a value that's in the domain? like:

https://example.com?test=helloworld

how do I get the value of the "test" variable that is there?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You probably mean https://example.com?test=helloworld including a ?.

Reading Value from URL

const url = new URL('https://example.com?test=helloworld');

console.log(url.searchParams.get("test")); // prints: helloworld

And to get the current URL you can use window.location.href.


Add Value to URL

const url = new URL('https://example.com');

url.searchParams.append('test', 'helloworld');

console.log(url.href);  // prints: https://example.com?test=helloworld

Have a look at the URL API on the MDN documentation.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!