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
Object.keys() coupled with the traditonal for loop to iterate over the keys, and lookup for the values out performs all other techniques. Here is a comprehensive performance comparison.
https://gists.cwidanage.com/2018/06/how-to-iterate-over-object-entries-in.html