Skip to content

Commit

Permalink
1/3 practice
Browse files Browse the repository at this point in the history
  • Loading branch information
vikiana-petithomme committed Jan 4, 2023
1 parent 43078e9 commit 1b796fe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Week 18/BeginnerSeries2Clock.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
function past(h, m, s) {
//#Happy Coding! ^_^
s += m * 60;
s += h * 60 * 60;
let ms = s * 1000;

return ms;
}

0 comments on commit 1b796fe

Please sign in to comment.