Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

142
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda