Please point me to an answer if this has been answered before, but I could not find one regarding statically created objects.
const foo = { 
  c: 'c', 
  b: 'b', 
  a: 'a' 
};
Is the order of the keys guaranteed to stay the same when using enumeration like Object.keys()?
 
     
    