File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Sprint-1/3-mandatory-interpret Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1- const movieLength = 8784 ; // length of movie in seconds
1+ const movieLength = "0" ; // length of movie in seconds
22
33const remainingSeconds = movieLength % 60 ;
44const totalMinutes = ( movieLength - remainingSeconds ) / 60 ;
@@ -12,14 +12,20 @@ console.log(result);
1212// For the piece of code above, read the code and then answer the following questions
1313
1414// a) How many variable declarations are there in this program?
15+ //6
1516
1617// b) How many function calls are there?
18+ //1 - console.log()
1719
1820// c) Using documentation, explain what the expression movieLength % 60 represents
1921// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
22+ //it gives you the remainder when movieLength is divided by 60
2023
2124// d) Interpret line 4, what does the expression assigned to totalMinutes mean?
25+ //it means it will take the movieLength in seconds, subtract remainingSeconds, and divide the answer by 60 to give the totalMinutes
2226
2327// e) What do you think the variable result represents? Can you think of a better name for this variable?
28+ //it is the length of time the movie has been running, remainingLength would be a better name
2429
2530// f) Try experimenting with different values of movieLength. Will this code work for all values of movieLength? Explain your answer
31+ //tried really big, small, and multiples of 60 and found no issue
You can’t perform that action at this time.
0 commit comments