Skip to content

Instantly share code, notes, and snippets.

View PhuongTPham's full-sized avatar

Phuong PhuongTPham

  • Ha Noi, Viet Nam
View GitHub Profile
@PhuongTPham
PhuongTPham / simple-pagination.js
Created February 21, 2022 02:19 — forked from kottenator/simple-pagination.js
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;