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

145
Views
For (key of me_labba){} notworking

I have used this code same theory I have used but 1one work but 2nd does not work in JavaScript

var me_labba = {
  name: 'kezara',
  bd: '1999'
};
var str_walata_awlak_na = "sdasdasd"
let key;

//1st one
for (key of str_walata_awlak_na) {
  console.log(key);
}
//2nd one
for (key of me_labba) {
  console.log(key);
}

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

0

Use for in with Objects in in Javascript

for (key in me_labba){
    console.log(key);
}

Or use Object.keys

Object.keys(me_labba).forEach((k) => console.log(k))
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!