I have the following object:
var myArr = {one:'1',two:'2',three:'3',four:'4',five:'5'};
I want to remove three properties from this object at once, for example:
delete myArr[one, three, five];
and it does not work. Should I do an independent deletion for each property, for example:
delete myArr[one]; delete myArr[three]; delete myArr[five];
Thanks.
source share