https://i.sstatic.net/7QG1J.png
I'm working with an array in JavaScript and I need to remove a specific value from it, specifically the one named "PropertyType[]". Can anyone help me figure out how to do this? I've included a picture of the array for reference. In the Newremoveurl array, I have the values.
var Newremoveurl = [];
var Parant_name = 'PropertyType';
$.each(Removeurl_array, function( key, value){
var decoded_key = decodeURI(value);
if ($.inArray(Parant_name, Newremoveurl)!='-1') {
}
Newremoveurl[key]=decoded_key;
});