What is the difference between using the delete operator on the array element as opposed to using the Array.splice method?
For example:
myArray = [\
splice will work with numeric indices.
splice
whereas delete can be used against other kind of indices..
delete
example:
delete myArray['text1'];