How to create animated number ?

Hello,

I would like to animate my figures. After a long search, I still can’t do it. I am a beginner in code.

Thank you in advance for your help!

Here is my code:

export function columnStrip2_viewportEnter(event, $w) {

let startNum = 0;
let endNum = 1993;
const duration =  75; 
$w.onViewportEnter(function () {
    setInterval(()=> {
        countUp();  
    }, duration);
});
function countUp(){ 
    if (startNum <= endNum ){
        $w('#text5').text = startNum.toString();
        startNum++;
    }}
}