Ugly splice

a few seconds ago

.splice functionality but a little bit ugly

const arr = [1,2,3,4]
const [,,...restArr] = arr
console.log(restArr) // [3,4]