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

161
Vistas
how to get character key from an array of letters

I know how to get the key of a character. for example console.log(String.fromCharCode(70)) would log the letter F

but how do I do the opposite and get the CharCode from a single letter string?

What I tried:


function solution(someword) {
  let oneArray = someword.split("");
  let onekey = String.fromCharCode(oneArray[0])
  console.log(onekey)
}

solution("FROG");

if my word is FROG. it should console log 70 since F is the first letter

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

0

Use String.charCodeAt:

function solution(someword) {
    let onekey = someword.charCodeAt(0)
    console.log(onekey) 
}

solution("FROG")
console.log(String.fromCharCode(70))

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