File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Sprint-1/3-mandatory-interpret Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments