Skip to content

Commit 5e6f17f

Browse files
authored
Merge pull request #232 from CodeYourFuture/itp-jan-2025-version
Revision: Overhauled coursework, general themes listed
2 parents a288698 + deffeae commit 5e6f17f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+455
-223
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"streetsidesoftware.code-spell-checker",
66
"eamodio.gitlens",
77
"ritwickdey.LiveServer",
8-
"vsliveshare.vsliveshare"
8+
"vsliveshare.vsliveshare",
9+
"Orta.vscode-jest"
910
]
1011
}
File renamed without changes.

Sprint-1/exercises/initials.js renamed to Sprint-1/1-key-exercises/2-initials.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ let lastName = "Johnson";
44

55
// Declare a variable called initials that stores the first character of each string.
66
// This should produce the string "CKJ", but you must not write the characters C, K, or J in the code of your solution.
7+
8+
let initials = ``;
9+
10+
// https://www.google.com/search?q=get+first+character+of+string+mdn
11+

Sprint-1/exercises/paths.js renamed to Sprint-1/1-key-exercises/3-paths.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ console.log(`The base part of ${filePath} is ${base}`);
1616

1717
// Create a variable to store the dir part of the filePath variable
1818
// Create a variable to store the ext part of the variable
19+
20+
const dir = ;
21+
const ext = ;
22+
23+
// https://www.google.com/search?q=slice+mdn
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)