Skip to content

Instantly share code, notes, and snippets.

@phamthieu0605
phamthieu0605 / simple-pagination.js
Created April 20, 2021 17:26 — 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;