1、返回的对象接口
const mapObj = { “apple": ‘苹果’, ”banana“: ‘香蕉’ };
2、转换为ES6 map对象
const map = new Map(Object.entries(mapObj));
3、访问
map.get('apple');