Given this JSON object, how does lodash remove the reach
value from the objects?
{
total: 350,
SN1: {
reach: 200,
engagementRate: 1.35
},
SN2: {
reach: 150,
engagementRate: 1.19
}
}
I've been trying to iteratively remove() it but I always get an undefined object in return so I'm positive I'm doing it wrong.
This is also the first time I'm using lodash, so that might be the actual problem.
Can anyone help?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…