I am trying to figure out how you would iterate through a hashtable and get their key names or element names instead of their value. So for instance:
[client_name, Mike]
[age, 26]
[height, 5"3"]
So for instance if I wanted to do a for loop or for each I would be able to return "client_name, age, and height" rather then their values. I am working in Javascript.