How to convert hh:mm:ss to minutes in TypeScript

1 Answer

0 votes
function hhmmsstominutes(hhmmss: string): number {
    const time: number[] = hhmmss.split(':').map(Number);
    
    return (time[0] * 60) + time[1] + (time[2] / 60);
}

console.log(hhmmsstominutes("2:30:00"));
console.log(hhmmsstominutes("2:35:30"));
console.log(hhmmsstominutes("5:00:45"));

  
  
/*
run:

150
155.5
300.75

*/

 



answered Apr 17, 2025 by avibootz

Related questions

1 answer 125 views
1 answer 127 views
1 answer 170 views
1 answer 74 views
1 answer 95 views
1 answer 83 views
...