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?