Skip to content

Commit 411f51a

Browse files
committed
corrected typo devides
1 parent 049a4e5 commit 411f51a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ console.log(result);
1919

2020
// c) Using documentation, explain what the expression movieLength % 60 represents
2121
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
22-
// The expression movieLength % 60 devides the movieLength by 60 seconds and return the reminder
22+
// The expression movieLength % 60 divides the movieLength by 60 seconds and return the reminder
2323
// which will be stroed in the const remainingSeconds.
2424

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

0 commit comments

Comments
 (0)