Skip to content

Commit 1bc5c74

Browse files
committed
Create initials variable by extracting first characters of first, middle, and last names.
1 parent 2dd0a78 commit 1bc5c74

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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+
9+
let initials = firstName.charAt(0) + middleName.charAt(0) + lastName.charAt(0);
10+
11+
console.log(initials);
12+
913

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

0 commit comments

Comments
 (0)