Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

174
Visualizações
How to make Object value to Object property in JavaScript

I have an Object named category. Here the property/keys are in short-form and the value is in fullform. I need to assign Object property/keys to Object value for a short time moment.
Like.

'Technology' have to make tech

const category = {
    tech: 'Technology',
    gnr: 'General',
    ent: 'Entertainment',
    sci: 'Science',
}
let a 
a=Object.values(category).map(i=>{
 Object.keys(category).map(j=>{
   i=j
 })
})
console.log(a)

about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

const categories = {
    tech: 'Technology',
    gnr: 'General',
    ent: 'Entertainment',
    sci: 'Science',
}

const predicate = 'General';

let match;

for (const category in categories) {
    if (categories[category] === predicate) {
        match = category;
    }
}

console.log(match);

about 4 years ago · Juan Pablo Isaza Relatório

0

let a = {};
for (let key in category)
{
    a[category[key]] = key;
}

or

let a = {};
Object.entries(category).forEach(kv=>a[kv[1]]=kv[0]);

about 4 years ago · Juan Pablo Isaza Relatório

0

Nope! Now after getting match with parameter that I will pass, I need that matching parameter Object Value's Property/Keys.
Like, If General Match then I need gnr
Here I am getting 'General' but I need gnr

const category = {
    tech: 'Technology',
    gnr: 'General',
    ent: 'Entertainment',
    sci: 'Science',
}
let a 
a=Object.values(category).filter(i=>{
  if(i=='General')  {
return Object.keys(i)
  }
 
})
console.log(a)

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda