Dictionary.Remove() : Dictionary « MS JScript « JavaScript Tutorial






Syntax

dictionaryobj.Remove(key)

The Remove() method removes the key, item pair. If no match is found, an error is returned. Nothing is returned from this method.

<html>
    <script language="JScript">
    <!--
    var fruits = new ActiveXObject("Scripting.Dictionary");

    fruits.Add("A","AA");
    fruits.Add("B","BB");
    fruits.Add("G","GG");
    fruits.Add("O","OO");

    fruits.Remove("B");

    theArray = (new VBArray(fruits.Keys())).toArray();
    document.write("The array contains:<br>");

    for (i in theArray) {
      document.write("theArray[",i,"]=",theArray[i],"<br>");
    }

    -->
    </script>
</html>








32.4.Dictionary
32.4.1.Dictionary
32.4.2.Dictionary.Add()
32.4.3.Dictionary.Count
32.4.4.Dictionary.Exists()
32.4.5.Dictionary.Item()
32.4.6.Dictionary.Items()
32.4.7.Dictionary.Key()
32.4.8.Dictionary.Keys()
32.4.9.Dictionary.Remove()
32.4.10.Dictionary.RemoveAll()