en.javascript.info/8-web-components/2-custom-elements/1-live-timer/solution.md
Ilya Kantor 9c3ac133e3 draft
2019-03-30 14:32:38 +03:00

4 lines
384 B
Markdown

Please note:
1. We clear `setInterval` timer when the element is removed from the document. That's important, otherwise it continues ticking even if not needed any more. And the browser can't clear the memory from this element and referenced by it.
2. We can access current date as `elem.date` property. All class methods and properties are naturally element methods and properties.