I know that I can iterate over an object\'s properties like this:
for (property in object) { // do stuff }
I also know that the fastest
An object's properties are unordered by definition. The lack of order means that there is no "forwards", and therefore there is no "backwards" either.