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 @@ -21,18 +21,18 @@ function formatTimeDisplay(seconds) {
2121// Questions
2222
2323// a) When formatTimeDisplay is called how many times will pad be called?
24- // =============> write your answer here
24+ // =============> 3 times
2525
2626// Call formatTimeDisplay with an input of 61, now answer the following:
2727
2828// b) What is the value assigned to num when pad is called for the first time?
29- // =============> write your answer here
29+ // =============> 61
3030
3131// c) What is the return value of pad is called for the first time?
32- // =============> write your answer here
32+ // =============> "61"
3333
3434// d) What is the value assigned to num when pad is called for the last time in this program? Explain your answer
35- // =============> write your answer here
35+ // =============> 1, when pad is last called its at ${pad(remainingSeconds)} where the value left is 1
3636
3737// e) What is the return value of pad when it is called for the last time in this program? Explain your answer
38- // =============> write your answer here
38+ // =============> 1 at const remainingSexonds = seconds % 60 gives 1
You can’t perform that action at this time.
0 commit comments