Can we get keys of a JSON in the same order it was received?
Object.keys(company).length works, but I need confirmation if it will always work.
{
  "hello":"world",
  "welcome":"back",
  "1":"2"
}
How can we get keys in the same order?
["hello","welcome","1"]
 
     
    