// page view counter
function incrementPageViewCount() {
const key = "page_view_count";
const count = Number(sessionStorage.getItem(key)) || 0;
const newCount = count + 1;
sessionStorage.setItem(key, newCount);
return newCount;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter