We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc2278c commit 60302b2Copy full SHA for 60302b2
1 file changed
Sprint-1/3-mandatory-interpret/2-time-format.js
@@ -28,6 +28,9 @@ console.log(result);
28
// e) What do you think the variable result represents? Can you think of a better name for this variable?
29
// It represents the final time format of the movie in hours, minutes, and seconds.
30
// A clearer name would be something like movieDuration.
31
+// movieLength is the total time in seconds.
32
+// movieDuration is the final time written as hours:minutes:seconds.
33
+// movieLength is the raw number, movieDuration is the readable version.
34
35
// f) Try experimenting with different values of movieLength. Will this code work for all values of movieLength? Explain your answer
36
// I tried running different numbers and it still works, even when the value is negative.
0 commit comments