I have a few object properties I need to delete at certain point but I still need others so I can\'t just write delete vm.model; to remove all of it.
delete vm.model;
At the
Check this out:
> const {a,b, ...newArray} = {a:1,b:2,c:3,d:4} > newArray { c: 3, d: 4 }