Answers for "set timer for 30 seconds for otp in typescript"

0

set timer for 30 seconds for otp in typescript

countdown() {

    let thisRef=this;
    setInterval(function () {
      thisRef.timeLeft--;
    thisRef.ChangeDetectorRef.detectChanges();

    }, 1000);
  }
Posted by: Guest on April-05-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language