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'
})
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b326cc-2be09.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b326cc-2be09.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?