I know this is a newbie question, but I need help with iterating backwards. My for loop problem is that I have to iterate backwards by 5 from 100. And I have to console.log all numbers excluding 0. This is what I have.
for(var i=100; i >= 0; i-=5)
console.log(i);
Does anyone have any suggestions how to print out the iteration backwards without 0? Sorry if this is simple, I was having a real hard time with it.