Skip to content

Commit c7a00b7

Browse files
committed
completed initials exercise using string indexing
1 parent 65fe894 commit c7a00b7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ let lastName = "Johnson";
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.
77

8-
let initials = ``;
8+
let initials = firstName[0] + middleName[0] + lastName[0];
9+
console.log(initials)
10+
// fistName[0] gets the first character of the string "Creola" C
11+
// middleName[0] gets the second character of the name "Katherine" K
12+
// lastName[0] gets the third character of the name "Johnson" J
13+
914

1015
// https://www.google.com/search?q=get+first+character+of+string+mdn
1116

0 commit comments

Comments
 (0)