We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df747db commit 34cd9f5Copy full SHA for 34cd9f5
2 files changed
Sprint-1/1-key-exercises/1-count.js
@@ -6,4 +6,4 @@ count = count + 1;
6
// Describe what line 3 is doing, in particular focus on what = is doing
7
8
// 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.
+// The right hand side (count + 1) is evaluated first, then the = operator assigns that value to count.
Sprint-1/1-key-exercises/3-paths.js
@@ -20,4 +20,4 @@ console.log(`The base part of ${filePath} is ${base}`);
20
const dir = filePath.slice(0, lastSlashIndex + 1);
21
const ext = base.slice(base.lastIndexOf("."));
22
23
-// https://www.google.com/search?q=slice+mdn
+// https://www.google.com/search?q=slice+mdn
0 commit comments