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

164
Views
Console log the value of item in array

I have this array and I want to console log item value. How can I do that? I got this array from MongoDB. I would appreciate any help.

{
"_id" : "61462a7bf3c0be993bcfdc3e",
"item": "journal",
"qty": 25,
"size": {
"h": 14,
"w": 21,
"uom": "cm"
},
"status": "A"
}

Edit: I looked in MongoDB documentation and found the solution. Thanks to everyone who answered.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

I think you can simply access the key from the object like this:

const obj = {
"_id" : "61462a7bf3c0be993bcfdc3e",
"item": "journal",
"qty": 25,
"size": {
"h": 14,
"w": 21,
"uom": "cm"
},
"status": "A"
}

console.log(obj.item);

Another way could be to find out the keys and iterate over them if keys are dynamic in nature:

const obj = {
"_id" : "61462a7bf3c0be993bcfdc3e",
"item": "journal",
"qty": 25,
"size": {
"h": 14,
"w": 21,
"uom": "cm"
},
"status": "A"
}

const keys = Object.keys(obj);

keys.forEach(key => console.log(`Key is ${key} and the value is ${JSON.stringify(obj[key])}`))

about 4 years ago · Juan Pablo Isaza Report

0

You can try:

Object.entries(YOUR_OBJECT_NAME).filter(val=>val[0] === "item")

You will get back an array of key and value pair. You can then console.log your value.

Easier solution is that you directly determine your key. If you know what is the name of your key then you can do:

console.log(YOUR_OBJECT_NAME.item)
about 4 years ago · Juan Pablo Isaza Report
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!