Skip to content

Instantly share code, notes, and snippets.

View iShubhamPrakash's full-sized avatar
🌏
Working remotely

Shubham Prakash iShubhamPrakash

🌏
Working remotely
View GitHub Profile
@iShubhamPrakash
iShubhamPrakash / add_two_times.js
Created October 21, 2022 02:46 — forked from joseluisq/add_two_times.js
Add two string time values (HH:mm:ss) with javascript
/**
* Add two string time values (HH:mm:ss) with javascript
*
* Usage:
* > addTimes('04:20:10', '21:15:10');
* > "25:35:20"
* > addTimes('04:35:10', '21:35:10');
* > "26:10:20"
* > addTimes('30:59', '17:10');
* > "48:09:00"