我需要创建一个函数getPropertiesData(list)
,它接受一个属性列表和一个包含这些属性的对象,并且只返回列表中匹配的对象的属性。
插图:
function getPropertiesData(['x', 'y']){
const o = {
'x': 1,
'y': 2,
'z': 3
}
// Will return
return {
'x': 1,
'y': 2
}
// not including the 'z' variable since it was not specified as input in the list array
}
如何在 javascript 中做到这一点?