开发者

Best way to delete element from array without rearrange it

I have to delete some elements of my array, but without rearrange array.

If I use "delete" to delete my elements, the "holes" take up memory?

var array=["A","B",开发者_如何学运维"C"];
delete array[1];  // array -> ["A", undefined, "C"]

I think the deleted element is really deleted so it isn't take up memory space, isn't true?


Try using,

array.splice(index, 1);

See Mastering JavaScript Arrays.


Entirely implementation dependent. Internally all JS representations will eventually convert to a sparse representation, but the sparese representation tends to use more memory per element and be slower to access than the non-sparse array.

For this reason removing onevalue from a dense array is unlikely to releas any memory, but after a sufficient set of elements are removed the implementation will likely convert to a sparse representation to save memory overall.

Note: the object or value at the index you delete won't be deleted immediately -- delete simply removes the property slot from the object -- the object/value will only be removed during a GC pass, and only if there are no other references.


You can use array.splice(1, 1); It will remove one entry at index 1. The first parameter is the index, the second one is the count.


There can be many ways to do it. One of them is to create slices of the array excluding the index and then concatenate the slices.

var arr = ["A", "B", "C"];
const idx = 1;

//Before
console.log(arr);

arr = arr.slice(0, idx).concat(arr.slice(idx + 1));

//After
console.log(arr);

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜