map function for objects (instead of arrays)

前端 未结 30 2616
无人及你
无人及你 2020-11-22 04:23

I have an object:

myObject = { \'a\': 1, \'b\': 2, \'c\': 3 }

I am looking for a native method, similar to Array.prototype.map

30条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 05:10

    I handle only strings to reduce exemptions:

    Object.keys(params).map(k => typeof params[k] == "string" ? params[k] = params[k].trim() : null);
    

提交回复
热议问题