Skip to content

Commit fcff6a6

Browse files
Implement extraction of dir and ext parts from filePath using .slice
1 parent 346b377 commit fcff6a6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,14 @@ console.log(`The base part of ${filePath} is ${base}`);
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
1919

20-
const dir = ;
21-
const ext = ;
20+
// Use the slice method to extract the dir and ext parts
21+
const dir = filePath.slice(0, lastSlashIndex);
22+
console.log(`The dir part of ${filePath} is ${dir}`);
23+
24+
25+
// Use the slice method to extract the ext part
26+
// The ext part is the part after the last dot in the base part
27+
const ext = base.slice(base.lastIndexOf(".") + 1);
28+
console.log(`The ext part of ${filePath} is ${ext}`);
2229

2330
// https://www.google.com/search?q=slice+mdn

0 commit comments

Comments
 (0)