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

234
Vistas
my currency converter question is i a need function to convert rand(ZAR) to pound, dollar, and euro

I need to put in a certain amount of rands and get back euro, pound, and dollar.

The rest of my code does have the link to the javascript file. I've only put the dollar() function in for now because I was at least trying to get one to work but it didn't so I need help.

function dollar() {
  let money = document.getElementbyId("rand").value;
  const $ = 15.5734;
  document.getElementById('result').innerHTML = $ * money;
}
<form>
  Rand: <input type="number" id="rand">
  <input id="dollar" type="button" onclick="dollar()" value="dollar"/>
  <input id="euro" type="button" onclick="euro()" value="euro">
  <input id ="pound" type="button" onclick="pound()" value="pound">
</form>
        
<p> result is: <span id="result"></span> </p>

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You just needed to change function name and change document.getElementbyId to document.getElementById

<form>
  Rand: <input type="number" id="rand">
  <input id="dollar" type="button" onclick="todollar()" value="dollar"/>
  <input id="euro" type="button" onclick="euro()" value="euro">
  <input id ="pound" type="button" onclick="pound()" value="pound">
</form>
        
<p> result is: <span id="result"></span> </p>
<script>
function todollar() {
  let money = document.getElementById("rand").value;
  const $ = 15.5734;
  document.getElementById('result').innerHTML = $ * money;
}
</script>

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