up vote 57 down vote favorite
8
share [g+] share [fb]

Suppose I have this code:

var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;

Now if I wanted to remove "lastname"?....is there some equivalent of
myArray["lastname"].remove()?

(I need the element gone because the number of elements is important and I want to keep things clean).

Thanks in advance to everyone! Andrew

link|improve this question
8  
A tip: don't get arrays and maps confused. Some languages, like php, have a single object for both. Though you used the right type here (new Object()) you named it myArray, it's just a matter of standards for a langugage. – Juan Mendes Apr 27 '10 at 17:35
feedback

4 Answers

up vote 104 down vote accepted

Use the "delete" keyword in Javascript.

delete myArray["lastname"];
link|improve this answer
feedback

All objects in JavaScript are implemented as hashtables/associative arrays. So, the following are the equivalent:

alert(myObj["SomeProperty"]);
alert(myObj.SomeProperty);

And, as already indicated, you "remove" a property from an object via the delete keyword, which you can use in two ways:

delete myObj["SomeProperty"];
delete myObj.SomeProperty;

Hope the extra info helps...

link|improve this answer
Wow. That clears up a few misconceptions I had about js. Thx, Jason. – Mike Jun 26 '09 at 0:57
2  
should be noted that the dot notation doesn't work if the property isn't a simple term. i.e. myObj['some;property'] works, but myObj.some;property wouldn't (for obvious reasons). Also it might not be obvious that you can use a variable in the bracket notation, i.e. var x = 'SomeProperty'; alert(myObj[x]) – Kip Apr 27 '11 at 3:48
feedback

That only removes deletes the object but still keeps the array length same.

To remove you need to do something like:

array.splice(index, 1);

link|improve this answer
Indeed, but in this case an array is not being used, just a plain old object, thus it has no length or splice method. – MooGoo Sep 13 '10 at 3:48
feedback

You are using Object, you are not having an associative array to begin with. With an associative array, adding and removing items goes like this:

    Array.prototype.contains = function(obj) 
    {
        var i = this.length;
        while (i--) 
        {
            if (this[i] === obj) 
            {
                return true;
            }
        }
        return false;
    }


    Array.prototype.add = function(key, value) 
    {
        if(this.contains(key))
            this[key] = value;
        else
        {
            this.push(key);
            this[key] = value;
        }
    }


    Array.prototype.remove = function(key) 
    {
        for(var i = 0; i < this.length; ++i)
        {
            if(this[i] == key)
            {
                this.splice(i, 1);
                return;
            }
        }
    }



    // Read a page's GET URL variables and return them as an associative array.
    function getUrlVars()
    {
        var vars = [], hash;
        var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');

        for(var i = 0; i < hashes.length; i++)
        {
            hash = hashes[i].split('=');
            vars.push(hash[0]);
            vars[hash[0]] = hash[1];
        }

        return vars;
    }



    function ForwardAndHideVariables() {
        var dictParameters = getUrlVars();

        dictParameters.add("mno", "pqr");
        dictParameters.add("mno", "stfu");

        dictParameters.remove("mno");



        for(var i = 0; i < dictParameters.length; i++)
        {
            var key = dictParameters[i];
            var value = dictParameters[key];
            alert(key + "=" + value);
        }
        // And now forward with HTTP-POST
                    aa_post_to_url("Default.aspx", dictParameters);
    }


    function aa_post_to_url(path, params, method) {
        method = method || "post";

        var form = document.createElement("form");

        //move the submit function to another variable
        //so that it doesn't get written over if a parameter name is 'submit'
        form._submit_function_ = form.submit;

        form.setAttribute("method", method);
        form.setAttribute("action", path);

        for(var i = 0; i < params.length; i++)
        {
            var key = params[i];

            var hiddenField = document.createElement("input");
            hiddenField.setAttribute("type", "hidden");
            hiddenField.setAttribute("name", key);
            hiddenField.setAttribute("value", params[key]);

            form.appendChild(hiddenField);
        }

        document.body.appendChild(form);
        form._submit_function_(); //call the renamed function
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown