The most practical way to delete multiple attributes in an object

1.let obj = {K1RV "banana", K2RU "Apple", K3RU "orange"};

2. What"s a good way to delete both K2 and K3 attributes in obj.

Feb.28,2021

delete one by one

let obj = {k1:'', k2:'', k3:''}
function delKey(obj, ...args) {
    args.forEach(v => {
        delete obj[v]
    })
    return obj
}
delKey(obj,'k2','k3')
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-1b3601d-2bff7.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-1b3601d-2bff7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?