我正在尝试使用ramda. 我有一系列要删除的属性,例如:const colToHide = ['name', 'age']; // those properties are selected by the user 我想从一组对象中删除属性'name'和'age'(或任何用户选择的属性)。对象数组是这样的:const person = [ {name:'sam', age:'24', address:'xyz avenue', employed:true}, {name:'john', age:'25', address:'xyz avenue', employed:true}];更新该对象数组的正确方法是什么?
添加回答
举报
0/150
提交
取消