Skip to content

Instantly share code, notes, and snippets.

@yapalenov
yapalenov / Pagination.ts
Last active February 1, 2022 15:06
Create pagination buttons array
class Pagination {
private readonly page: number;
private readonly pagesCount: number;
private readonly delta: number;
constructor(page: number, pagesCount: number) {
this.page = page;
this.pagesCount = pagesCount;
this.delta = 2;
}