Skip to content

Commit d314db4

Browse files
authored
Refactor initials variable to use string indexing
Updated the initials variable to dynamically extract the first characters from firstName, middleName, and lastName.
1 parent 3ff62a2 commit d314db4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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];
99

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

0 commit comments

Comments
 (0)