@media (prefers-reduced-motion: reduce) { button { animation: none; } }
#
class IncreasingCounter { #count = 0; get value() { console.log('Getting the current value!'); return this.#count; } increment() { this.#count++; } }