Skip to content

Commit d2d31ba

Browse files
authored
Merge branch 'main' into acoursework/sprint-2
2 parents 6f10d48 + 49fe3af commit d2d31ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ function formatTimeDisplay(seconds) {
2828
// =============> 1. The last pad call is pad(remainingSeconds), and with 61 seconds input, remainingSeconds = 61 % 60 = 1
2929

3030
// e) What is the return value of pad when it is called for the last time in this program? Explain your answer
31-
// =============> "01". pad(1) calls toString() to get "1", then padStart(2, "0") pads it to "01"
31+
// =============> "01". pad(1) calls toString() to get "1", then padStart(2, "0") pads it to "01"

0 commit comments

Comments
 (0)