files/en-us/web/api/translator/destroy/index.md
{{APIRef("Translator and Language Detector APIs")}}{{SeeCompatTable}} {{securecontext_header}}
The destroy() method of the {{domxref("Translator")}} interface releases the resources assigned to the Translator instance it is called on and stops any further activity on it. This means that any ongoing and subsequent method calls made on the Translator will reject with an AbortError.
It makes sense to destroy Translator objects if they are no longer being used, as they tie up significant resources in their handling.
destroy()
None.
None ({{jsxref("undefined")}}).
destroy() usageconst translator = await Translator.create({
sourceLanguage: "en",
targetLanguage: "ja",
});
// ...
translator.destroy();
{{Specifications}}
{{Compat}}