Trying to remove unnecessary properties from object:
{
    "1502134857307": {
        "bio": "",
        "category": {
            "category1": true
        },
        "name": "dog",
        "snapchat": "",
        "twitter": ""
    },
    "1502134908057": {
        ...
    }
}
I wanted to make it look like this:
{
    "1502134857307": {
        "category": {
            "category1": true
        },
        "name": "dog"
    },
    "1502134908057": {
        ...
    }
}
I have tried: not working
var newObejct = Object.assign({}, $r.props.data);
delete newObejct.bio;
 
    