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

75
Views
Getter accessor is showing undefined on a JS Class

Let's say I have the following class...

Class Person {
   constructor(name, drives = false) {
      this.name = name;
      this._drives = drives;
   }

   get drives() {
      return this._drives;
   }

   set drives(drives) {
      this._drives = drives;
   }
}

Now let's say that I store a bunch of "Person" objects in localstorage. Now I want to loop through the the localstorage and find the "Person" that does not drive (I created 1 out of 5 who has _drives as TRUE). When I do this, they all come back as undefined...why?

const testFunction = () => {
for (let i = 0; i <= localStorage.length; i++) {
    const key = localStorage.key(i);
    const storedObj = JSON.parse(localStorage.getItem(key));


    if (!storedObj.drives === true) {
        console.log(storedObj.drives);
    }
  }
}

testFunction();

What's wrong here?

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!