constProduct=require('../models/product');constITEMS_PER_PAGE=2;...exports.getProducts=(req,res,next)=>{constpage=+req.query.page||1;//+ at the beginning makes number from stringlettotalItems;Product.find().countDocuments().then(numProducts=>{totalItems=numProducts;returnProduct.find().skip((page-1)*ITEMS_PER_PAGE).limit(ITEMS_PER_PAGE)}).then(products=>{res.render('shop/index'),{prods:products,pageTitle:'Shop',path:'/',currentPage:page,hasNextPage:ITEMS_PER_PAGE*page<totalItems,hasPreviousPage:page>1,nextPage:page+1,previousPage:page-1,lastPage:Math.ceil(totalItems/ITEMS_PER_PAGE)}})}