const myObject= {
'Age': '25',
'Gender': 'Male',
'Nationality': 'Australian'
};
const myMap = new Map(Object.entries(myObject)); //object to map
const anotherObject = Object.fromEntries(myMap) // map to object
const myObject= {
'Age': '25',
'Gender': 'Male',
'Nationality': 'Australian'
};
const myMap = new Map(Object.entries(myObject)); //object to map
const anotherObject = Object.fromEntries(myMap) // map to object