Skip to content

Tag: destructor

Is there destructor in typeScript

Is there destructor in TypeScript? If not, how can I delete an object? I tried destructor() and ~ClassName() but it didn’t work. Answer JavaScript uses garbage collection to automatically delete objects when they are no longer referenced. There is no concept of destructors or finalizers. You can’t…