Skip to content

Commit 6ac3015

Browse files
committed
Corrected typo
1 parent 6e76b0d commit 6ac3015

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Sprint-1/3-mandatory-interpret/2-time-format.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ console.log(result);
2222
// c) Using documentation, explain what the expression movieLength % 60 represents
2323
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
2424

25-
// Ans: The expression movieLength % 60 returns the reminder after totalMinutes is divided by 60.
25+
// Ans: The expression movieLength % 60 returns the remainder after totalMinutes is divided by 60.
2626

2727
// d) Interpret line 4, what does the expression assigned to totalMinutes mean?
2828

@@ -36,3 +36,6 @@ console.log(result);
3636

3737
// Ans: I have tried with different values and it seems to work for all values, but it needs to validate to avoid entering negative values
3838
// I inserted --3500 and returned 0: -58: -20 which does not mean real time representation.
39+
40+
41+
// Corrected typo reminder -----> remainder

0 commit comments

Comments
 (0)