I would like to loop in an object in order to capture the value of the key and the corresponding value.
For example:
var obj = {
'Name' : 'String 1',
'Age' : 'String 2',
'Key N': 'String N'
}
I would like to return something like this:
Name - > String 1
Age - > String 2
Key N - > String N