Hey all I am trying to delete a few items inside my object:
if (e = j[a].apply(j, g), e !== c && e !== j)
$.each(j.data[0], function (key, value) {
console.log(key, value);
j.data.splice(1, 1);
});
return h = e, !1
However, that does not seem to delete the item environment sine that is #1 and bomDescription is #0.
I also tried:
j[0].pop()
j.data[0].pop()
j.data[0].splice(1, 1)
Which non of the above work or cause an error.
What am I doing incorrectly?

data[0]an object or an array? Your title says 'object' but your code suggests an array.splice()that's an array method.