Есть ли способ упростить следующий код?
let { page_size, current_page } = paging;
this.p_start = page_size * current_page;
this.p_current = current_page;
this.p_dg_current = this.p_current + 1;
this.p_size = page_size;
paging
является объектом и имеет свойства page_size
и current_page
.
Существует ли деструктивный способ назначения страниц paging.page_size и paging.current_page непосредственно для this.p_size и this.p_current?
let { this.p_size = page_size, this.p_current = current_page } = paging;
this.p_start = page_size * current_page;
this.p_dg_current = this.p_current + 1;