In Javascript, is it possible to destructure an object with "delete" as one of its properties?
class MyClass {
constructor ( { prop1, prop2, delete, prop4 } ) {
this.prop1 = prop1
this.prop2 = prop2
this.delete = delete
this.prop4 = prop4
}
}