Stack Overflow Asked by Mészáros Zoltán on January 12, 2021
The code below is the correct, working solution to an exercise I had to work out. I am wondering why my solution did not work.
The only difference I had was this line:
for (var i = contacts.length; i > 0; i--) {
Why it did not do the same just reversed direction?
for (var i = 0; i < contacts.length; i++) {
if (contacts[i].firstName == name){
if (contacts[i].hasOwnProperty(prop)){
return contacts[i][prop];
} else{
return "No such property";
}
}
}
return "No such contact";
Array Start with 0. Length Start with 1.
let say i want the last element from contact array
let contact = ['mo','so','do'];
console.log(contact[length])
It won't show a console. Y ? Because To get a last array.
You always need to -1
from the array.length
Answered by Khant on January 12, 2021
The two loops have different ranges.
If contacts.length
had equalled 4
, then i
would have taken on these values:
console.log('ascending loop');
for (var i = 0; i < 4; i++) {console.log(i);}
console.log('descending loop');
for (var i = 4; i > 0; i--) {console.log(i);}
Answered by JMP on January 12, 2021
There are multiple problems in your code.
Answered by dahan raz on January 12, 2021
On the answer, the for counter go like 0 ... n, and on your for loop, the counter goes like n ... 1.
So, on your code, the index never is 0
Answered by Zinho on January 12, 2021
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP