$w.onReady(function () {}); let startNum = 0; let endNum = 1000; const duration = 300; $w.onReady(function () { setInterval(() => { countUp(); }, duration); }); function countUp() { if (startNum <= endNum) { $w('#StartNumber').text = startNum.toString(); startNum++; } }
top of page
Step Ahead Tuition
An Online Education Company
By Teachers for Students
All Posts
GCSE Exam Preparation
Nick Watkinson
Mar 28, 2023
1 min read
Welcome to my Charles Dickens blog series!
Over the coming weeks, I'll be exploring the life and works of one of the most famous authors of the Victorian era. From his early life...
bottom of page