Skip to content

Commit b6ec84d

Browse files
committed
feat: add initials variable from first, middle, and last names
Concatenate first characters of firstName, middleName, and lastName to create initials string dynamically
1 parent 9b83b30 commit b6ec84d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ 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
11-

0 commit comments

Comments
 (0)