Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to delete an entry from a JavaScript array? The entry in the list gets replaced with null when delete operator is used.

data = [{pid:30, pname:abc}, {pid:31, pname:def}, {pid:32, pname:zxc}]
delete data[1]

becomes:

data = [{pid:30, pname:abc}, null, {pid:32, pname:zxc}]

FYI I'm getting this as json back from an ajax call. The returned value is parsed like var data = YAHOO.lang.JSON.parse(result.value || '[]')

share|improve this question
what language are you working in? – sakabako Dec 16 '09 at 16:10
Just to avoid confusion, JSON refers to the actual String value returned by a JSON stringifier. It looks like you are actually talking about a JavaScript literal expression, which looks like JSON but is actually JS code. – Mark Porter Dec 16 '09 at 16:26
oh sorry should have mentioned its javascript. – zapping Dec 16 '09 at 16:29
its javascript and json is returned from an ajax call to php. the returned value is parsed like var data = YAHOO.lang.JSON.parse(result.value || '[]'); – zapping Dec 16 '09 at 16:37

3 Answers

up vote 1 down vote accepted

What about sort()ing and then splice()ing the list?

share|improve this answer
thx splice did it. data.splice(1,1). – zapping Dec 16 '09 at 16:55
Why sort() first? – Roatin Marth Dec 16 '09 at 17:25
To cellect all the nulls together and splice them all at once. – graphicdivine Dec 16 '09 at 17:53

There are many librarys out there that deal with the serialization and deserialzation of JSON content. Many of those librarys also allow you to manipulate the data from JSON also.

Depending on what language you're using will determine which library you decide to use.

More details would be helpful.

share|improve this answer
its javascript and json is returned from an ajax call to php. the returned value is parsed like var data = YAHOO.lang.JSON.parse(result.value || '[]'); – zapping Dec 16 '09 at 16:37
FYI I updated the question to include the specific JavaScript context the OP is in. – Crescent Fresh Dec 16 '09 at 16:49
wow thx for that (Y) – zapping Dec 16 '09 at 16:53

This is a problem with the JavaScript Array class. Deleting a value always leaves a hole. You need to create a new array without the hole. Something like this might be helpful:

    Array.prototype.removeItem = function(index){
        var newArray = []
        for (var i =0; i < this.length; ++i){
            if (i==index||typeof this[i] === "undefined") continue;
            newArray.push(this[i]);
        }
        return newArray;
    }

    var a1 = [1,2,3,4,5]
    delete a1[1]
    alert(a1.join())
    //prints 1,,3,4,5

    var a2 = a1.removeItem(3)
    alert(a2.join())
    //prints 1,3,5 -- removed item 3 and previously "deleted" item 1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.