Feex,
const hours = String(Math.floor(Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)))).padStart( 2,'0');
const minutes = String(Math.floor(Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)))).padStart( 2,'0');
const seconds = String(Math.floor(Math.floor((distance % (1000 * 60)) / 1000))).padStart( 2,'0');