Is there destructor in TypeScript? If not, how can I delete an object? I tried destructor() and ~ClassName() but it didn\'t work.
destructor()
~ClassName()
You can actually
class MyClass { constructor(input1, input2){ this.in1 = input1; this.in2 = input2; } } let myObject = {}; try { myObject = { classHandler: new MyClass('1','2') } } catch (e) { } finally { delete myObject.classHandler }