Skip to content

Commit 4010b4d

Browse files
committed
corrected name suggestion according to camelCase
1 parent 1e97c2e commit 4010b4d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ console.log(result);
3333
// Ans: the variable result represent total movie lenght, Movie duration_hr_min_sec would be better name.
3434

3535
// In a "camel case" the following options would be better names
36-
// 1. MovieDurationHrMinSec
37-
// 2. TotalMovieSpan
38-
// 3. TotalMoviePeriod
36+
// 1. movieDurationHrMinSec
37+
// 2. totalMovieSpan
38+
// 3. totalMoviePeriod
3939

4040
// f) Try experimenting with different values of movieLength. Will this code work for all values of movieLength? Explain your answer
4141

@@ -45,3 +45,5 @@ console.log(result);
4545

4646
// Corrected typo reminder -----> remainder
4747
// Suggested better names in "camel case" a convention in Javascript
48+
49+
// corrected name suggestion according to camelCase

0 commit comments

Comments
 (0)