For a given object if the input "value" of a property is "" , we want to delete that property from the object .
Ex
{
"Speed": "59 MBPS",
"latitude": "90.2",
"longitude": ""
}
As per the example ,since the value of longitude is "" , this should get deleted from the object. Please suggest a javascript code to achieve this .