File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Sprint-2/4-mandatory-interpret Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -18,17 +18,24 @@ function formatTimeDisplay(seconds) {
18
18
19
19
// a) When formatTimeDisplay is called how many times will pad be called?
20
20
// =============> write your answer here
21
+ // pad is called 3 times because there are 3 values to be padded - hours, minutes and seconds
21
22
22
23
// Call formatTimeDisplay with an input of 61, now answer the following:
24
+ console . log ( formatTimeDisplay ( 61 ) ) ; // Should return "00:01:01"
23
25
24
26
// b) What is the value assigned to num when pad is called for the first time?
25
27
// =============> write your answer here
28
+ // num is assigned the value of totalHours which is 0 because 61 seconds is less than a minute
26
29
27
30
// c) What is the return value of pad is called for the first time?
28
31
// =============> write your answer here
32
+ // The return value is "00" because the padStart method adds a "0" to the start of the string "0" to make it 2 characters long
29
33
30
34
// d) What is the value assigned to num when pad is called for the last time in this program? Explain your answer
31
35
// =============> write your answer here
36
+ // num is assigned the value of remainingSeconds which is 1 because 61 seconds is 1 second more than a full minute (60 seconds)
32
37
33
38
// e) What is the return value assigned to num when pad is called for the last time in this program? Explain your answer
34
39
// =============> write your answer here
40
+ // The return value is "01" because the padStart method adds a "0" to the start of the string "1" to make it 2 characters long
41
+
You can’t perform that action at this time.
0 commit comments