debouncedHello() {
// this.hello (с debounced)
}
hello() {
console.log('Hello')
}
}
constructor() { this.hello = debounce(() => this.hello()) }
Обсуждают сегодня