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

90
Views
Implement search option for array inside a Json object using javascript?

I want to create a small dictionary with Json and Javascript. Here is my Json file.

  {
    "entry": "proud",
    "synonyms": ["noble", "illustrious"],
  }
]

So the user should be able to search the entry (ie., proud) or any one of the synonym (noble or illustrious) and get the results.

My JS

const input = document.getElementById("input");
async function findWords(){
    const res = await fetch('./dict.json');
    const data = await res.json();

    data.filter(function(item){
        if(input.value === item.entry){
            console.log(item.entry);
            console.log(item.synonyms);
        }
    });
}
about 4 years ago · Juan Pablo Isaza
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!