object.keys + lookup + for loop vs. object.entries.forEach (version: 0)
Compares the speed of getting an array of keys and looking up the object values with those keys (in a loop) with simply calling `.forEach` on `object.entries()`
Comparing performance of: Object.entries.forEach vs Object.keys + lookup + for loop