File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ count = count + 1;
66// Describe what line 3 is doing, in particular focus on what = is doing
77
88// Line 3 reassigns the count variable by evaluating the expression on the right hand side of the assignment.
9- // The right hand side (count + 1) is evaluated first, then the = operator assigns that value to count.
9+ // The right hand side (count + 1) is evaluated first, then the = operator assigns that value to count.
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ console.log(`The base part of ${filePath} is ${base}`);
2020const dir = filePath . slice ( 0 , lastSlashIndex + 1 ) ;
2121const ext = base . slice ( base . lastIndexOf ( "." ) ) ;
2222
23- // https://www.google.com/search?q=slice+mdn
23+ // https://www.google.com/search?q=slice+mdn
You can’t perform that action at this time.
0 commit comments