File tree Expand file tree Collapse file tree
Sprint-2/4-mandatory-interpret Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,17 +22,26 @@ function formatTimeDisplay(seconds) {
2222
2323// a) When formatTimeDisplay is called how many times will pad be called?
2424// =============> write your answer here
25+ // 3
2526
2627// Call formatTimeDisplay with an input of 61, now answer the following:
2728
2829// b) What is the value assigned to num when pad is called for the first time?
2930// =============> write your answer here
31+ // 0
3032
3133// c) What is the return value of pad is called for the first time?
3234// =============> write your answer here
35+ // 00
3336
3437// d) What is the value assigned to num when pad is called for the last time in this program? Explain your answer
3538// =============> write your answer here
39+ // 1
40+ // When pad is called for the last time it is here pad(remainingSeconds)
41+ // remaining seconds = seconds % 60 = 61 % 60 = 1
3642
3743// e) What is the return value of pad when it is called for the last time in this program? Explain your answer
3844// =============> write your answer here
45+ // 01
46+ // when pad is called it takes the num, in this case 1, and pads it out to two digits by adding zeros at the front
47+ // so 1 becomes 01
You can’t perform that action at this time.
0 commit comments