How do I delete an object in a logarithmic array?

use action to delete array objects in the container
clipboard.png


clipboard.png
clipboard.png

how to solve the page jam, and is it possible to delete multiple objects in the array without a loop?

Mar.02,2021

if(Array.isArray(_stateGoodsList)){
    _stateGoodsList.splice(...)
}

Delete array elements

let arr = ['a', 'b', 'c']
// 'c'
arr = arr.filter(i => {
    return i != 'c'
})
Menu