Skip to content

Commit 75983a9

Browse files
committed
time-format.js
1 parent 09b1e52 commit 75983a9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Sprint-2/4-mandatory-interpret/time-format.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,24 @@ function formatTimeDisplay(seconds) {
1818

1919
// a) When formatTimeDisplay is called how many times will pad be called?
2020
// =============> write your answer here
21+
// pad will be called 3 times (once for hours, once for minutes, once for seconds).
2122

2223
// Call formatTimeDisplay with an input of 61, now answer the following:
2324

2425
// b) What is the value assigned to num when pad is called for the first time?
2526
// =============> write your answer here
27+
// The first call is pad(totalHours). For input 61, totalHours is 0.
28+
2629

2730
// c) What is the return value of pad is called for the first time?
2831
// =============> write your answer here
32+
// pad(0) returns "00".
2933

3034
// d) What is the value assigned to num when pad is called for the last time in this program? Explain your answer
3135
// =============> write your answer here
36+
// The last call is pad(remainingSeconds). For input 61, remainingSeconds is 1.
37+
3238

3339
// e) What is the return value assigned to num when pad is called for the last time in this program? Explain your answer
3440
// =============> write your answer here
41+
// pad(1) returns "01".

0 commit comments

Comments
 (0)