Skip to content

Commit e5bda8c

Browse files
committed
update sprint 1
prune repetitive or mathy assignments add scaffolding
1 parent e00edf2 commit e5bda8c

File tree

40 files changed

+161
-191
lines changed

40 files changed

+161
-191
lines changed
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/mandatory-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)